Add TODO items and remove use of 'noexcept' in C++03 test.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@238802 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2015-06-02 01:25:34 +00:00
parent ebc31694e8
commit c4324b2b94
2 changed files with 4 additions and 2 deletions

View File

@ -46,4 +46,6 @@ Misc Tasks
* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447)
* Investigate the effect of using __decltype instead of __typeof__ to provide
decltype in C++03. What code could be broken by this change?
* Convert failure tests to use Clang Verify.
* Document support (or lack of) for C++11 libraries in C++03.
* Document supported compilers.

View File

@ -49,7 +49,7 @@ void operator delete[](void* p, const std::nothrow_t&) throw()
std::free(p);
}
void operator delete[](void* p, std::size_t) noexcept
void operator delete[](void* p, std::size_t) throw()
{
++sized_delete_called;
std::free(p);