Remove commented out TODOs. They defined unneeded methods.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@245411 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2015-08-19 03:48:08 +00:00
parent f99b59c784
commit a8dca5f978
2 changed files with 0 additions and 7 deletions

View File

@ -93,9 +93,6 @@ _LIBCPP_BEGIN_NAMESPACE_LFTS
class _LIBCPP_EXCEPTION_ABI bad_any_cast : public bad_cast
{
public:
//TODO(EricWF) Enable or delete these.
//bad_any_cast() _NOEXCEPT;
//virtual ~bad_any_cast() _NOEXCEPT;
virtual const char* what() const _NOEXCEPT;
};

View File

@ -11,10 +11,6 @@
_LIBCPP_BEGIN_NAMESPACE_LFTS
// TODO(EricWF) Enable or delete these
//bad_any_cast::bad_any_cast() _NOEXCEPT {}
//bad_any_cast::~bad_any_cast() _NOEXCEPT {}
const char* bad_any_cast::what() const _NOEXCEPT {
return "bad any cast";
}