comparison dmd/func.c @ 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 eef8ac26c66c
children a26b0c5d5942
comparison
equal deleted inserted replaced
702:353d9d184091 703:06576ece1a1b
75 scope = NULL; 75 scope = NULL;
76 hasReturnExp = 0; 76 hasReturnExp = 0;
77 nrvo_can = 1; 77 nrvo_can = 1;
78 nrvo_var = NULL; 78 nrvo_var = NULL;
79 shidden = NULL; 79 shidden = NULL;
80
81 // LDC
82 isArrayOp = false;
80 } 83 }
81 84
82 Dsymbol *FuncDeclaration::syntaxCopy(Dsymbol *s) 85 Dsymbol *FuncDeclaration::syntaxCopy(Dsymbol *s)
83 { 86 {
84 FuncDeclaration *f; 87 FuncDeclaration *f;