Diff reduction: Remove Scope::ignoreTemplates and friends.

It is unused since my change to the way codegen is
driven. If we want to optimize template codegen again,
we should do it properly, contributing the changes back
to DMD.
This commit is contained in:
David Nadlinger
2013-10-18 23:09:50 +02:00
committed by Kai Nacke
parent 5ac894c32d
commit 01b6d55770
6 changed files with 0 additions and 19 deletions

View File

@@ -55,7 +55,6 @@ void StaticAssert::semantic2(Scope *sc)
ScopeDsymbol *sd = new ScopeDsymbol();
sc = sc->push(sd);
sc->flags |= SCOPEstaticassert;
++sc->ignoreTemplates;
Expression *e = exp->ctfeSemantic(sc);
e = resolveProperties(sc, e);
sc = sc->pop();