comparison dmd/STC.d @ 179:cd48cb899aee

Updated to dmd2.040
author korDen
date Sun, 17 Oct 2010 20:56:07 +0400
parents bc45b1c53019
children
comparison
equal deleted inserted replaced
178:e3afd1303184 179:cd48cb899aee
42 STCproperty = 0x100000000, 42 STCproperty = 0x100000000,
43 STCsafe = 0x200000000, 43 STCsafe = 0x200000000,
44 STCtrusted = 0x400000000, 44 STCtrusted = 0x400000000,
45 STCsystem = 0x800000000, 45 STCsystem = 0x800000000,
46 STCctfe = 0x1000000000, // can be used in CTFE, even if it is static 46 STCctfe = 0x1000000000, // can be used in CTFE, even if it is static
47 STCdisable = 0x2000000000, // for functions that are not callable
47 } 48 }
49
48 alias STC StorageClass; 50 alias STC StorageClass;
49 51
50 import dmd.EnumUtils; 52 import dmd.EnumUtils;
51 mixin(BringToCurrentScope!(STC)); 53 mixin(BringToCurrentScope!(STC));