[svn r39] * Updated to DMD 1.022 with the exception of:

Bugzilla 278: dmd.conf search path doesn't work

This fix was causing crashes for me :/ So for it's the old behaviour
This commit is contained in:
Tomas Lindquist Olsen
2007-10-09 06:21:30 +02:00
parent 3db5b9bb98
commit e251fc42b2
15 changed files with 277 additions and 114 deletions

View File

@@ -213,6 +213,7 @@ struct ClassDeclaration : AggregateDeclaration
void interfaceSemantic(Scope *sc);
int isNested();
int isCOMclass();
virtual int isCOMinterface();
int isAbstract();
virtual int vtblOffset();
char *kind();
@@ -248,6 +249,7 @@ struct InterfaceDeclaration : ClassDeclaration
int isBaseOf(BaseClass *bc, int *poffset);
char *kind();
int vtblOffset();
virtual int isCOMinterface();
void toObjFile(); // compile to .obj file
Symbol *toSymbol();