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:
parent
4836ba16f7
commit
fd0aa1a4b8
1 changed files with 6 additions and 0 deletions
|
@ -106,6 +106,12 @@ namespace Compiler
|
||||||
mLoc.mLiteral.clear();
|
mLoc.mLiteral.clear();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
else if (c==':')
|
||||||
|
{
|
||||||
|
// treat : as a whitespace :(
|
||||||
|
mLoc.mLiteral.clear();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
else if (std::isdigit (c))
|
else if (std::isdigit (c))
|
||||||
{
|
{
|
||||||
bool cont = false;
|
bool cont = false;
|
||||||
|
|
Loading…
Reference in a new issue