aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLPrefixExpression.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLPrefixExpression.h')
-rw-r--r--src/sksl/ir/SkSLPrefixExpression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLPrefixExpression.h b/src/sksl/ir/SkSLPrefixExpression.h
index dafe1e9599..4fa54ca32d 100644
--- a/src/sksl/ir/SkSLPrefixExpression.h
+++ b/src/sksl/ir/SkSLPrefixExpression.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_PREFIXEXPRESSION
#define SKSL_PREFIXEXPRESSION
@@ -22,7 +22,7 @@ struct PrefixExpression : public Expression {
, fOperand(std::move(operand))
, fOperator(op) {}
- virtual SkString description() const override {
+ virtual String description() const override {
return Token::OperatorName(fOperator) + fOperand->description();
}