Changed: #825 Remove all warnings when compiling Ryzom

This commit is contained in:
kervala 2010-09-17 12:19:11 +02:00
parent 6c84a00257
commit 96dcb1a6da

View file

@ -40,7 +40,13 @@ enum TTemplatizerToken
Unknown
};
struct { TTemplatizerToken Token; const char* Text; } SimpleTokens[] =
struct SToken
{
TTemplatizerToken Token;
const char* Text;
};
SToken SimpleTokens[] =
{
{ BlocStart, "{" },
{ BlocEnd, "}" },