finally match NewMore.cp

This commit is contained in:
CreateSource 2025-03-15 01:12:53 -04:00
parent 1853ee6391
commit 89446989e9

View file

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