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:
ethannicholas 2016-09-08 09:19:51 -07:00 committed by Commit bot
parent e19c179281
commit f86809730e

View File

@ -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;