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

report
Marc Zinnschlag 10 years ago
parent 6a67aba336
commit 109fbab546

@ -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;
}

Loading…
Cancel
Save