diff options
Diffstat (limited to 'libstdc++-v3/libsupc++/nested_exception.h')
-rw-r--r-- | libstdc++-v3/libsupc++/nested_exception.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libstdc++-v3/libsupc++/nested_exception.h b/libstdc++-v3/libsupc++/nested_exception.h index 799bd1979d7d..6a4f04e2e07b 100644 --- a/libstdc++-v3/libsupc++/nested_exception.h +++ b/libstdc++-v3/libsupc++/nested_exception.h @@ -63,7 +63,7 @@ namespace std nested_exception& operator=(const nested_exception&) = default; - inline virtual ~nested_exception(); + virtual ~nested_exception(); void rethrow_nested() const __attribute__ ((__noreturn__)) @@ -74,8 +74,6 @@ namespace std { return _M_ptr; } }; - inline nested_exception::~nested_exception() = default; - template<typename _Except> struct _Nested_exception : public _Except, public nested_exception { |