diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2004-07-28 03:12:05 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2004-07-28 03:12:05 +0000 |
| commit | ffeaf689a248da869b6bc8d4fd2233dfe513c060 (patch) | |
| tree | 75ef0e6da73746d6849e25a0996ae34e1aeff51d /contrib/libstdc++/src/stdexcept.cc | |
| parent | 9a63ad9273061dc19cbd117762e365ea9634e241 (diff) | |
Notes
Diffstat (limited to 'contrib/libstdc++/src/stdexcept.cc')
| -rw-r--r-- | contrib/libstdc++/src/stdexcept.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libstdc++/src/stdexcept.cc b/contrib/libstdc++/src/stdexcept.cc index d39d41ffef658..5db7c68d36d5b 100644 --- a/contrib/libstdc++/src/stdexcept.cc +++ b/contrib/libstdc++/src/stdexcept.cc @@ -1,6 +1,6 @@ // Methods for Exception Support for -*- C++ -*- -// Copyright (C) 1997, 1999, 2001 Free Software Foundation, Inc. +// Copyright (C) 1997, 1999, 2001, 2002 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -39,7 +39,7 @@ namespace std logic_error::logic_error(const string& __arg) : exception(), _M_msg(__arg) { } - logic_error::~logic_error() throw() { }; + logic_error::~logic_error() throw() { } const char* logic_error::what() const throw() @@ -60,7 +60,7 @@ namespace std runtime_error::runtime_error(const string& __arg) : exception(), _M_msg(__arg) { } - runtime_error::~runtime_error() throw() { }; + runtime_error::~runtime_error() throw() { } const char* runtime_error::what() const throw() |
