view dmd/MOD.d @ 14:2cc604139636

Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
author Robert Clipsham <robert@octarineparrot.com>
date Sun, 04 Apr 2010 02:06:32 +0100
parents 10317f0c89a5
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));