commit | 792d0f13d6cb58ddf27b45e6835ba54c1d8ade77 | [log] [tgz] |
---|---|---|
author | Greg Daniel <egdaniel@google.com> | Sun Nov 20 14:53:35 2016 +0000 |
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | Sun Nov 20 14:53:48 2016 +0000 |
tree | 929ba3d4638561e480bb070da4d01eec2cce21ab | |
parent | 7a5b48a75b6f5819c196d158eefa70677783554f [diff] [blame] |
Revert "switched skslc from std::string to SkString" This reverts commit d8df21a1e08b5b3380261f4b90acfbdc538ef93c. Reason for revert: Breaking Roll Original change's description: > switched skslc from std::string to SkString > > BUG=skia: > > GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4977 > > Change-Id: I15e24963b09b719a2c07da67745114f5ac66cee8 > Reviewed-on: https://skia-review.googlesource.com/4977 > Reviewed-by: Brian Salomon <bsalomon@google.com> > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> > TBR=bsalomon@google.com,benjaminwagner@google.com,ethannicholas@google.com,reviews@skia.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Change-Id: I84d5311beb9d5e607b7a4a3c138332f0c8f19648 Reviewed-on: https://skia-review.googlesource.com/5077 Commit-Queue: Greg Daniel <egdaniel@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
diff --git a/src/sksl/ir/SkSLFloatLiteral.h b/src/sksl/ir/SkSLFloatLiteral.h index 8a1a5ad..a8fcfcf 100644 --- a/src/sksl/ir/SkSLFloatLiteral.h +++ b/src/sksl/ir/SkSLFloatLiteral.h
@@ -21,7 +21,7 @@ : INHERITED(position, kFloatLiteral_Kind, *context.fFloat_Type) , fValue(value) {} - virtual SkString description() const override { + virtual std::string description() const override { return to_string(fValue); }