aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLContinueStatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLContinueStatement.h')
-rw-r--r--src/sksl/ir/SkSLContinueStatement.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sksl/ir/SkSLContinueStatement.h b/src/sksl/ir/SkSLContinueStatement.h
index 3f5bc1d4bb..b4446940cf 100644
--- a/src/sksl/ir/SkSLContinueStatement.h
+++ b/src/sksl/ir/SkSLContinueStatement.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_CONTINUESTATEMENT
#define SKSL_CONTINUESTATEMENT
@@ -14,14 +14,14 @@
namespace SkSL {
/**
- * A 'continue' statement.
+ * A 'continue' statement.
*/
struct ContinueStatement : public Statement {
ContinueStatement(Position position)
: INHERITED(position, kContinue_Kind) {}
- String description() const override {
- return String("continue;");
+ SkString description() const override {
+ return SkString("continue;");
}
typedef Statement INHERITED;