Some class <-> struct changes.

This is partly a backport from DMD 2.065. It fixes nasty warnings with clang.
This commit is contained in:
Kai Nacke
2014-01-03 16:14:51 +01:00
parent 731f2a8fdf
commit 13e00a89ca
2 changed files with 4 additions and 4 deletions

View File

@@ -74,9 +74,9 @@ struct ArrayIter
};
// From dsymbol.h / declaration.h
struct Dsymbol;
struct FuncDeclaration;
struct VarDeclaration;
class Dsymbol;
class FuncDeclaration;
class VarDeclaration;
// some aliases
typedef ArrayIter<Dsymbol> DsymbolIter;