comparison dmd/TypeInfoFunctionDeclaration.d @ 79:43073c7c7769

updated to 2.035 also implemented a few missing functions still crashes in Import.importAll though
author Trass3r
date Mon, 30 Aug 2010 03:57:51 +0200
parents ef02e2e203c2
children e28b18c23469
comparison
equal deleted inserted replaced
78:b98fa8a4bf04 79:43073c7c7769
10 { 10 {
11 super(tinfo, 0); 11 super(tinfo, 0);
12 type = Type.typeinfofunction.type; 12 type = Type.typeinfofunction.type;
13 } 13 }
14 14
15 void toDt(dt_t** pdt) 15 override void toDt(dt_t** pdt)
16 { 16 {
17 assert(false); 17 assert(false);
18 } 18 }
19 } 19 }
20 20