From 89446989e9756bf316d436331a117d73ea9413b9 Mon Sep 17 00:00:00 2001 From: CreateSource <72283721+abnormalhare@users.noreply.github.com> Date: Sat, 15 Mar 2025 01:12:53 -0400 Subject: [PATCH] finally match NewMore.cp --- src/Runtime.PPCEABI.H/NewMore.cp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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() {};