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