view dmd/MOD.d @ 96:acd69f84627e

further work
author Trass3r
date Tue, 31 Aug 2010 02:12:15 +0200
parents 2cc604139636
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));