Issue : 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;