comparison dmd/PREC.d @ 175:94b6033c07f3

get rid of globals malloc -> GC.malloc
author korDen
date Sun, 10 Oct 2010 03:48:06 +0400
parents af1bebfd96a4
children
comparison
equal deleted inserted replaced
174:af724d3510d7 175:94b6033c07f3
28 PREC_pow, 28 PREC_pow,
29 PREC_unary, 29 PREC_unary,
30 PREC_primary, 30 PREC_primary,
31 } 31 }
32 32
33 PREC precedence[TOK.TOKMAX]; 33 __gshared PREC precedence[TOK.TOKMAX];
34 34
35 import dmd.EnumUtils; 35 import dmd.EnumUtils;
36 mixin(BringToCurrentScope!(PREC)); 36 mixin(BringToCurrentScope!(PREC));