aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLPostfixExpression.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLPostfixExpression.h')
-rw-r--r--src/sksl/ir/SkSLPostfixExpression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLPostfixExpression.h b/src/sksl/ir/SkSLPostfixExpression.h
index 2c84af72fd..05ff1675e0 100644
--- a/src/sksl/ir/SkSLPostfixExpression.h
+++ b/src/sksl/ir/SkSLPostfixExpression.h
@@ -4,7 +4,7 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-
+
#ifndef SKSL_POSTFIXEXPRESSION
#define SKSL_POSTFIXEXPRESSION
@@ -22,7 +22,7 @@ struct PostfixExpression : public Expression {
, fOperand(std::move(operand))
, fOperator(op) {}
- virtual String description() const override {
+ virtual SkString description() const override {
return fOperand->description() + Token::OperatorName(fOperator);
}