aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLWhileStatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLWhileStatement.h')
-rw-r--r--src/sksl/ir/SkSLWhileStatement.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sksl/ir/SkSLWhileStatement.h b/src/sksl/ir/SkSLWhileStatement.h
index c35d6df9e4..a741a0441d 100644
--- a/src/sksl/ir/SkSLWhileStatement.h
+++ b/src/sksl/ir/SkSLWhileStatement.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_WHILESTATEMENT
#define SKSL_WHILESTATEMENT
@@ -17,13 +17,13 @@ namespace SkSL {
* A 'while' loop.
*/
struct WhileStatement : public Statement {
- WhileStatement(Position position, std::unique_ptr<Expression> test,
+ WhileStatement(Position position, std::unique_ptr<Expression> test,
std::unique_ptr<Statement> statement)
: INHERITED(position, kWhile_Kind)
, fTest(std::move(test))
, fStatement(std::move(statement)) {}
- String description() const override {
+ SkString description() const override {
return "while (" + fTest->description() + ") " + fStatement->description();
}