mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-23 15:39:42 +00:00
Merge pull request #1267 from Allofich/scriptsign
Treat =< and => as == in scripts
This commit is contained in:
commit
7998583a7b
1 changed files with 5 additions and 0 deletions
|
@ -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…
Reference in a new issue