comparison dmd/TypeInfoStaticArrayDeclaration.d @ 64:4290d870944a

More fixes
author korDen
date Mon, 23 Aug 2010 20:29:15 +0400
parents
children ee3a9f34dc48
comparison
equal deleted inserted replaced
63:cab4c37afb89 64:4290d870944a
1 module dmd.TypeInfoStaticArrayDeclaration;
2
3 import dmd.Type;
4 import dmd.TypeInfoDeclaration;
5 import dmd.backend.dt_t;
6
7 class TypeInfoStaticArrayDeclaration : TypeInfoDeclaration
8 {
9 this(Type tinfo)
10 {
11 super(tinfo, 0);
12 }
13
14 void toDt(dt_t **pdt)
15 {
16 assert(false);
17 }
18 }