aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLFloatLiteral.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLFloatLiteral.h')
-rw-r--r--src/sksl/ir/SkSLFloatLiteral.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sksl/ir/SkSLFloatLiteral.h b/src/sksl/ir/SkSLFloatLiteral.h
index a8fcfcf644..8a1a5ad63a 100644
--- a/src/sksl/ir/SkSLFloatLiteral.h
+++ b/src/sksl/ir/SkSLFloatLiteral.h
@@ -21,7 +21,7 @@ struct FloatLiteral : public Expression {
: INHERITED(position, kFloatLiteral_Kind, *context.fFloat_Type)
, fValue(value) {}
- virtual std::string description() const override {
+ virtual SkString description() const override {
return to_string(fValue);
}