finally match NewMore.cp
This commit is contained in:
parent
1853ee6391
commit
89446989e9
1 changed files with 8 additions and 6 deletions
|
|
@ -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() {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue