aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLTypeReference.h
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-08-03 12:43:36 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-03 12:43:36 -0700
commitf789b3893579b773bb4d7be6c2c65311500b53bb (patch)
treeffb4c1c5775ba6379a9e504534171a67fa1803c5 /src/sksl/ir/SkSLTypeReference.h
parente57b8c9a790253df1e2f0663bf63f8d6e04227d1 (diff)
added initial GLSL support to skslc
Diffstat (limited to 'src/sksl/ir/SkSLTypeReference.h')
-rw-r--r--src/sksl/ir/SkSLTypeReference.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLTypeReference.h b/src/sksl/ir/SkSLTypeReference.h
index 76923aae4d..10f36aa248 100644
--- a/src/sksl/ir/SkSLTypeReference.h
+++ b/src/sksl/ir/SkSLTypeReference.h
@@ -23,8 +23,8 @@ struct TypeReference : public Expression {
, fValue(type) {}
std::string description() const override {
- ASSERT(false);
- return "<type>";
+ ASSERT(false);
+ return "<type>";
}
const Type& fValue;