view dmd/CppMangleState.d @ 167:50a6d232176c

rewrite GlobalExpressions, moved DsymbolTable to Global, some cleanup
author korDen
date Thu, 30 Sep 2010 12:13:49 +0400
parents e28b18c23469
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);
	}
}