comparison dmd/struct.c @ 1619:c61782a76dff

Merge DMD r304: refactor invariant => immutable --- dmd/cast.c | 2 +- dmd/declaration.c | 2 +- dmd/declaration.h | 3 +-- dmd/doc.c | 2 +- dmd/expression.c | 6 +++--- dmd/interpret.c | 4 ++-- dmd/mtype.c | 2 +- dmd/mtype.h | 2 +- dmd/parse.c | 4 ++-- dmd/struct.c | 2 +- 10 files changed, 14 insertions(+), 15 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:22 -0300
parents 207a8a438dea
children ae8a94d87ca9
comparison
equal deleted inserted replaced
1618:a87f1d6ff48e 1619:c61782a76dff
279 isdeprecated = 1; 279 isdeprecated = 1;
280 assert(!isAnonymous()); 280 assert(!isAnonymous());
281 if (sc->stc & STCabstract) 281 if (sc->stc & STCabstract)
282 error("structs, unions cannot be abstract"); 282 error("structs, unions cannot be abstract");
283 #if DMDV2 283 #if DMDV2
284 if (storage_class & STCinvariant) 284 if (storage_class & STCimmutable)
285 type = type->invariantOf(); 285 type = type->invariantOf();
286 else if (storage_class & STCconst) 286 else if (storage_class & STCconst)
287 type = type->constOf(); 287 type = type->constOf();
288 #endif 288 #endif
289 289