removed const from ASTVarDeclaration::fName to avoid a Chromium build failure
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2325673002 Review-Url: https://codereview.chromium.org/2325673002
This commit is contained in:
parent
e19c179281
commit
f86809730e
@ -44,7 +44,7 @@ struct ASTVarDeclaration {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::string fName;
|
std::string fName;
|
||||||
|
|
||||||
// array sizes, if any. e.g. 'foo[3][]' has sizes [3, null]
|
// array sizes, if any. e.g. 'foo[3][]' has sizes [3, null]
|
||||||
std::vector<std::unique_ptr<ASTExpression>> fSizes;
|
std::vector<std::unique_ptr<ASTExpression>> fSizes;
|
||||||
|
Loading…
Reference in New Issue
Block a user