view dmd/CppMangleState.d @ 182:b64060ab22df

Now compileable with dmd2.050
author korDen
date Sat, 30 Oct 2010 05:05:32 +0400
parents 50a6d232176c
children
line wrap: on
line source

module dmd.CppMangleState;

import dmd.common;
import dmd.Array;
import dmd.OutBuffer;

struct CppMangleState
{
	/**
	 * Get rid of it or move to CompilerState
	 */
    // static __gshared Array components;

    int substitute(OutBuffer buf, void* p)
	{
		assert(false);
	}
}