Mark any as done and comment out extra methods until speaking to Marshall

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@243729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2015-07-31 02:29:11 +00:00
parent 7175a07921
commit 65a1d45c0a
3 changed files with 7 additions and 6 deletions

View File

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