diff --git a/src/Runtime.PPCEABI.H/NewMore.cp b/src/Runtime.PPCEABI.H/NewMore.cp index 326e5356..c2ed6fe8 100644 --- a/src/Runtime.PPCEABI.H/NewMore.cp +++ b/src/Runtime.PPCEABI.H/NewMore.cp @@ -2,12 +2,14 @@ namespace std { class exception { - public: - virtual ~exception(); - virtual const char *what() const { - return "exception"; - } + public: + virtual ~exception(); + virtual const char *what() const; }; } -std::exception::~exception() {} +const char *std::exception::what() const { + return "exception"; +}; + +std::exception::~exception() {};