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:
parent
ebc31694e8
commit
c4324b2b94
4
TODO.TXT
4
TODO.TXT
@ -46,4 +46,6 @@ Misc Tasks
|
|||||||
* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447)
|
* 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
|
* Investigate the effect of using __decltype instead of __typeof__ to provide
|
||||||
decltype in C++03. What code could be broken by this change?
|
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.
|
||||||
|
@ -49,7 +49,7 @@ void operator delete[](void* p, const std::nothrow_t&) throw()
|
|||||||
std::free(p);
|
std::free(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator delete[](void* p, std::size_t) noexcept
|
void operator delete[](void* p, std::size_t) throw()
|
||||||
{
|
{
|
||||||
++sized_delete_called;
|
++sized_delete_called;
|
||||||
std::free(p);
|
std::free(p);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user