view dmd/CppMangleState.d @ 185:13cf8da225ce

Merge.
author Jacob Carlborg <doob@me.com>
date Tue, 02 Nov 2010 08:49:51 +0100
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);
	}
}