view dmd/StringValue.d @ 171:b080e62b16b4

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

module dmd.StringValue;

import dmd.common;
import dmd.Lstring;
import dmd.Dchar;

struct StringValue
{
    union
    {
		int intvalue = 0;
		void* ptrvalue;
		dchar_t* string_;
    }

    Lstring lstring;
}