mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 00:08:26 -05:00
Add implementation for ZCG cpp defines proxy
This commit is contained in:
@ -7,7 +7,7 @@ ParsingException::ParsingException(const TokenPos position, std::string message)
|
||||
m_message(std::move(message))
|
||||
{
|
||||
std::ostringstream str;
|
||||
str << m_pos.m_line << ':' << m_pos.m_column << ' ' << m_message;
|
||||
str << position.m_filename << " L" << m_pos.m_line << ':' << m_pos.m_column << ' ' << m_message;
|
||||
m_full_message = str.str();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user