aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTVarDeclaration.h
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-09-08 09:19:51 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-08 09:19:51 -0700
commitf86809730ef3392db0fdbe78d3cd3a2df5696fd4 (patch)
tree17295e20a9e9bce588941cb9786154b1584b39fd /src/sksl/ast/SkSLASTVarDeclaration.h
parente19c179281967dd071f3fea6dc010a676bea799d (diff)
removed const from ASTVarDeclaration::fName to avoid a Chromium build failure
Diffstat (limited to 'src/sksl/ast/SkSLASTVarDeclaration.h')
-rw-r--r--src/sksl/ast/SkSLASTVarDeclaration.h2
1 files changed, 1 insertions, 1 deletions
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<std::unique_ptr<ASTExpression>> fSizes;