Browse Source

Added missing throw().

Frank Zago 14 years ago
parent
commit
5795334eec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/ERMInterpreter.cpp

+ 1 - 1
lib/ERMInterpreter.cpp

@@ -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();