mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-12 14:01:15 -04:00
parent
1956602aa2
commit
e095817ac2
@ -408,6 +408,11 @@ namespace Compiler
|
|||||||
special = S_cmpEQ;
|
special = S_cmpEQ;
|
||||||
else if (c=='=')
|
else if (c=='=')
|
||||||
special = S_cmpEQ;
|
special = S_cmpEQ;
|
||||||
|
else if (c == '>' || c == '<') // Treat => and =< as ==
|
||||||
|
{
|
||||||
|
special = S_cmpEQ;
|
||||||
|
mErrorHandler.warning (std::string("invalid operator =") + c + ", treating it as ==", mLoc);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
special = S_cmpEQ;
|
special = S_cmpEQ;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user