aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLIRNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLIRNode.h')
-rw-r--r--src/sksl/ir/SkSLIRNode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sksl/ir/SkSLIRNode.h b/src/sksl/ir/SkSLIRNode.h
index 139be32f44..9a04cddec5 100644
--- a/src/sksl/ir/SkSLIRNode.h
+++ b/src/sksl/ir/SkSLIRNode.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_IRNODE
#define SKSL_IRNODE
@@ -13,7 +13,7 @@
namespace SkSL {
/**
- * Represents a node in the intermediate representation (IR) tree. The IR is a fully-resolved
+ * Represents a node in the intermediate representation (IR) tree. The IR is a fully-resolved
* version of the program (all types determined, everything validated), ready for code generation.
*/
struct IRNode {
@@ -22,7 +22,7 @@ struct IRNode {
virtual ~IRNode() {}
- virtual String description() const = 0;
+ virtual SkString description() const = 0;
const Position fPosition;
};