view dmd/MOD.d @ 92:0c891ec48515

Fixed another bug related to copy ctor
author korDen
date Mon, 30 Aug 2010 23:43:38 +0400
parents 2cc604139636
children acd69f84627e
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 invariant
}

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