1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 19:15:41 +00:00

Issue #685: Treat : as a whitespace

This commit is contained in:
Marc Zinnschlag 2013-03-31 14:46:46 +02:00
parent 4836ba16f7
commit fd0aa1a4b8

View file

@ -106,6 +106,12 @@ namespace Compiler
mLoc.mLiteral.clear();
return true;
}
else if (c==':')
{
// treat : as a whitespace :(
mLoc.mLiteral.clear();
return true;
}
else if (std::isdigit (c))
{
bool cont = false;