aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTPrefixExpression.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ast/SkSLASTPrefixExpression.h')
-rw-r--r--src/sksl/ast/SkSLASTPrefixExpression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ast/SkSLASTPrefixExpression.h b/src/sksl/ast/SkSLASTPrefixExpression.h
index e06ec41f9e..08e50f7bf1 100644
--- a/src/sksl/ast/SkSLASTPrefixExpression.h
+++ b/src/sksl/ast/SkSLASTPrefixExpression.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_ASTPREFIXEXPRESSION
#define SKSL_ASTPREFIXEXPRESSION
@@ -22,7 +22,7 @@ struct ASTPrefixExpression : public ASTExpression {
, fOperator(op.fKind)
, fOperand(std::move(operand)) {}
- SkString description() const override {
+ String description() const override {
return Token::OperatorName(fOperator) + fOperand->description();
}