comparison dmd/declaration.h @ 703:06576ece1a1b

Changed premake.lua to work with mingw. Implemented array operations, not perfect but ok for tonight. closes #89
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 13 Oct 2008 23:19:32 +0200
parents 6aaa3d3c1183
children 6aeaef263289
comparison
equal deleted inserted replaced
702:353d9d184091 703:06576ece1a1b
649 649
650 // we keep our own table of label statements as LabelDsymbolS 650 // we keep our own table of label statements as LabelDsymbolS
651 // don't always carry their corresponding statement along ... 651 // don't always carry their corresponding statement along ...
652 typedef std::map<const char*, LabelStatement*> LabelMap; 652 typedef std::map<const char*, LabelStatement*> LabelMap;
653 LabelMap labmap; 653 LabelMap labmap;
654
655 // if this is an array operation it gets a little special attention
656 bool isArrayOp;
654 }; 657 };
655 658
656 struct FuncAliasDeclaration : FuncDeclaration 659 struct FuncAliasDeclaration : FuncDeclaration
657 { 660 {
658 FuncDeclaration *funcalias; 661 FuncDeclaration *funcalias;