1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

improved error reporting

This commit is contained in:
Marc Zinnschlag 2015-07-16 14:09:14 +02:00
parent 2016ff773f
commit 2d8a78726d

View file

@ -14,7 +14,10 @@
void CSVWorld::ScriptErrorTable::report (const std::string& message, const Compiler::TokenLoc& loc, Type type)
{
addMessage (message, type==Compiler::ErrorHandler::WarningMessage ?
std::ostringstream stream;
stream << message << " (" << loc.mLiteral << ")";
addMessage (stream.str(), type==Compiler::ErrorHandler::WarningMessage ?
CSMDoc::Message::Severity_Warning : CSMDoc::Message::Severity_Error, loc.mLine);
}