view dmd/WANT.d @ 171:b080e62b16b4

Enhanced buildscript to simplify compiling for new users
author Abscissa
date Sun, 03 Oct 2010 17:55:10 -0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.WANT;

enum WANT
{
	WANTflags = 1,
    WANTvalue = 2,
    WANTinterpret = 4,
}

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