view dmd/MOD.d @ 136:9d194c848e3a

fixed a few null reference bugs, thx sagitario
author Trass3r
date Mon, 13 Sep 2010 23:27:38 +0200
parents acd69f84627e
children af1bebfd96a4
line wrap: on
line source

module dmd.MOD;

public enum MOD
{
	MODundefined = 0,
	MODconst = 1,	// type is const
	MODshared = 2,	// type is shared
	MODinvariant = 4,	// type is immutable
	MODimmutable = 4,	// type is immutable
}

import dmd.EnumUtils;
mixin(BringToCurrentScope!(MOD));