aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLDoStatement.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-03-31 09:33:41 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-31 15:25:32 +0000
commitf3333c89bf05fc602d9bf8e1e24547668c660383 (patch)
tree3c0855ef8829201299ce757ecaf28bfda50a2683 /src/sksl/ir/SkSLDoStatement.h
parent66b09abdb184d843ece45a1d343fbe632075b323 (diff)
skslc can now be compiled with no Skia dependencies, in preparation for its eventual
role in Skia's build process. This reverts commit bcf35f86d50b784b165de703b404998dd4299f6a. BUG=skia: Change-Id: Id0a12dfc4d804d69a3c6bf60fed37e89ee130f02 Reviewed-on: https://skia-review.googlesource.com/10802 Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
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 e26d3dc974..4d3d34864d 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)) {}
- SkString description() const override {
+ String description() const override {
return "do " + fStatement->description() + " while (" + fTest->description() + ");";
}