From 3238e2a524a249908f7ba3837a0796acd15e2e6f Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Fri, 31 Aug 2018 22:43:43 +0200 Subject: [PATCH] expression: Remove hasCheckedAttrs from C++ headers --- src/dmd/expression.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/dmd/expression.h b/src/dmd/expression.h index 6bb6f404b2c7..faf46ae14130 100644 --- a/src/dmd/expression.h +++ b/src/dmd/expression.h @@ -565,12 +565,6 @@ class SymOffExp : public SymbolExp class VarExp : public SymbolExp { public: - /** - * Semantic can be called multiple times for a single expression. - * This field is needed to ensure the deprecation message will be printed only once. - */ - bool hasCheckedAttrs; - static VarExp *create(Loc loc, Declaration *var, bool hasOverloads = true); bool equals(RootObject *o); int checkModifiable(Scope *sc, int flag);