view dmd/Escape.d @ 102:3ddadd0c4534

wrong name.length check fixed (greetings to Trass3r!)
author korDen
date Tue, 31 Aug 2010 17:07:01 +0400
parents 10317f0c89a5
children 766e6dc390e1
line wrap: on
line source

module dmd.Escape;

struct Escape
{
    const(char)* strings[256];

    static const(char)* escapeChar(uint c)
	{
		assert(false);
	}
}