From 5795334eecddcec3c07363f1c4fcb6d17dc32698 Mon Sep 17 00:00:00 2001 From: Frank Zago Date: Sat, 9 Apr 2011 19:10:29 +0000 Subject: [PATCH] Added missing throw(). --- lib/ERMInterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ERMInterpreter.cpp b/lib/ERMInterpreter.cpp index f2fbdfd04..b828eacf7 100644 --- a/lib/ERMInterpreter.cpp +++ b/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();