aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLStatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ir/SkSLStatement.h')
-rw-r--r--src/sksl/ir/SkSLStatement.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/sksl/ir/SkSLStatement.h b/src/sksl/ir/SkSLStatement.h
index 02caac1f6c..012311fdd3 100644
--- a/src/sksl/ir/SkSLStatement.h
+++ b/src/sksl/ir/SkSLStatement.h
@@ -25,9 +25,7 @@ struct Statement : public IRNode {
kDo_Kind,
kExpression_Kind,
kFor_Kind,
- kGroup_Kind,
kIf_Kind,
- kNop_Kind,
kReturn_Kind,
kVarDeclarations_Kind,
kWhile_Kind
@@ -37,10 +35,6 @@ struct Statement : public IRNode {
: INHERITED(position)
, fKind(kind) {}
- virtual bool isEmpty() const {
- return false;
- }
-
const Kind fKind;
typedef IRNode INHERITED;