aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ast/SkSLASTNode.h')
-rw-r--r--src/sksl/ast/SkSLASTNode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sksl/ast/SkSLASTNode.h b/src/sksl/ast/SkSLASTNode.h
index b08bc2a932..af065955f8 100644
--- a/src/sksl/ast/SkSLASTNode.h
+++ b/src/sksl/ast/SkSLASTNode.h
@@ -4,11 +4,11 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-
+
#ifndef SKSL_ASTNODE
#define SKSL_ASTNODE
-#include "SkSLString.h"
+#include "SkString.h"
namespace SkSL {
@@ -18,8 +18,8 @@ namespace SkSL {
*/
struct ASTNode {
virtual ~ASTNode() {}
-
- virtual String description() const = 0;
+
+ virtual SkString description() const = 0;
};
} // namespace