1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Added missing throw().

This commit is contained in:
Frank Zago
2011-04-09 19:10:29 +00:00
parent ecb3508690
commit 5795334eec

View File

@@ -30,7 +30,7 @@ namespace VERMInterpreter
public:
ESymbolNotFound(const std::string & sym) : problem(std::string("Symbol ") + sym + std::string(" not found!"))
{}
~ESymbolNotFound() throw();
const char * what() const throw() OVERRIDE
{
return problem.c_str();