aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTIntLiteral.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ast/SkSLASTIntLiteral.h')
-rw-r--r--src/sksl/ast/SkSLASTIntLiteral.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sksl/ast/SkSLASTIntLiteral.h b/src/sksl/ast/SkSLASTIntLiteral.h
index 2598847534..f524bc04ad 100644
--- a/src/sksl/ast/SkSLASTIntLiteral.h
+++ b/src/sksl/ast/SkSLASTIntLiteral.h
@@ -21,7 +21,7 @@ struct ASTIntLiteral : public ASTExpression {
: INHERITED(position, kInt_Kind)
, fValue(value) {}
- std::string description() const override {
+ SkString description() const override {
return to_string(fValue);
}