Remove commented out TODOs. They defined unneeded methods.

llvm-svn: 245411
This commit is contained in:
Eric Fiselier 2015-08-19 03:48:08 +00:00
parent 9a5e62bf75
commit 21851d2b45
2 changed files with 0 additions and 7 deletions
libcxx
include/experimental
src

@ -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;
};

@ -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";
}