File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
reference/typeinfo/bad_typeid Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 55* function[ meta id-type]
66
77``` cpp
8- bad_typeid& operator =(const bad_typeid&); // (1) C++03
8+ bad_typeid& operator =(const bad_typeid&) throw (); // (1) C++03
99bad_typeid& operator =(const bad_typeid&) noexcept ; // (1) C++11
1010constexpr bad_typeid& operator =(const bad_typeid&) noexcept ; // (1) C++26
1111```
Original file line number Diff line number Diff line change 55* function[ meta id-type]
66
77``` cpp
8- bad_typeid (); // (1) C++03
8+ bad_typeid () throw(); // (1) C++03
99bad_typeid () noexcept ; // (1) C++11
1010constexpr bad_typeid () noexcept ; // (1) C++26
1111
12- bad_typeid (const bad_typeid&); // (2) C++03
12+ bad_typeid (const bad_typeid&) throw(); // (2) C++03
1313bad_typeid(const bad_typeid&) noexcept; // (2) C++11
1414constexpr bad_typeid(const bad_typeid&) noexcept; // (2) C++26
1515```
Original file line number Diff line number Diff line change 55* function[ meta id-type]
66
77``` cpp
8- virtual const char * what () const ; // (1) C++03
8+ virtual const char * what () const throw(); // (1) C++03
99virtual const char * what () const noexcept ; // (1) C++11
1010const char * what () const noexcept override ; // (1) C++17
1111constexpr const char * what () const noexcept override ; // (1) C++26
You can’t perform that action at this time.
0 commit comments