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 { namespace std {
class exception { class exception {
public: public:
virtual ~exception(); virtual ~exception();
virtual const char *what() const { virtual const char *what() const;
return "exception";
}
}; };
} }
std::exception::~exception() {} const char *std::exception::what() const {
return "exception";
};
std::exception::~exception() {};