aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLDoStatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLDoStatement.h')
-rw-r--r--src/sksl/ir/SkSLDoStatement.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLDoStatement.h b/src/sksl/ir/SkSLDoStatement.h
index 4d3d34864d..e26d3dc974 100644
--- a/src/sksl/ir/SkSLDoStatement.h
+++ b/src/sksl/ir/SkSLDoStatement.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_DOSTATEMENT
#define SKSL_DOSTATEMENT
@@ -23,7 +23,7 @@ struct DoStatement : public Statement {
, fStatement(std::move(statement))
, fTest(std::move(test)) {}
- String description() const override {
+ SkString description() const override {
return "do " + fStatement->description() + " while (" + fTest->description() + ");";
}