summaryrefslogtreecommitdiff
path: root/source/slang/slang-ast-expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ast-expr.h')
-rw-r--r--source/slang/slang-ast-expr.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/slang/slang-ast-expr.h b/source/slang/slang-ast-expr.h
index e0a55cc29..baa6de73a 100644
--- a/source/slang/slang-ast-expr.h
+++ b/source/slang/slang-ast-expr.h
@@ -38,18 +38,6 @@ class VarExpr : public DeclRefExpr
SLANG_AST_CLASS(VarExpr)
};
-class DifferentiableDeclRefExpr : public Expr
-{
- SLANG_AST_CLASS(DifferentiableDeclRefExpr)
-
- // Inner decl ref expr that references a differentiable expression.
- Expr* inner = nullptr;
-
- // Information on getters and setters if available.
- Expr* setterExpr = nullptr;
- Expr* getterExpr = nullptr;
-};
-
// An expression that references an overloaded set of declarations
// having the same name.
class OverloadedExpr : public Expr