From f86809730ef3392db0fdbe78d3cd3a2df5696fd4 Mon Sep 17 00:00:00 2001 From: ethannicholas Date: Thu, 8 Sep 2016 09:19:51 -0700 Subject: 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 --- src/sksl/ast/SkSLASTVarDeclaration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sksl/ast/SkSLASTVarDeclaration.h') diff --git a/src/sksl/ast/SkSLASTVarDeclaration.h b/src/sksl/ast/SkSLASTVarDeclaration.h index 2eaf4982ff..066922fb85 100644 --- a/src/sksl/ast/SkSLASTVarDeclaration.h +++ b/src/sksl/ast/SkSLASTVarDeclaration.h @@ -44,7 +44,7 @@ struct ASTVarDeclaration { return result; } - const std::string fName; + std::string fName; // array sizes, if any. e.g. 'foo[3][]' has sizes [3, null] std::vector> fSizes; -- cgit v1.2.3