1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-06 18:40:23 +00:00

changed column/row numbering in script compiler error messages from being starting at 0 to starting at 1

This commit is contained in:
Marc Zinnschlag 2014-12-07 16:02:28 +01:00
parent 6a67aba336
commit 109fbab546

View File

@ -16,7 +16,7 @@ namespace Compiler
mStream << "warning ";
mStream
<< "line " << loc.mLine << ", column " << loc.mColumn
<< "line " << loc.mLine+1 << ", column " << loc.mColumn+1
<< " (" << loc.mLiteral << ")" << std::endl
<< " " << message << std::endl;
}