diff options
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/new.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/new.cpp b/libcxx/src/new.cpp index dfeb5a1ac5f..11d7be62aff 100644 --- a/libcxx/src/new.cpp +++ b/libcxx/src/new.cpp @@ -24,7 +24,7 @@ static std::new_handler __new_handler; #endif -#ifndef _LIBCPPABI_VERSION +//#ifndef _LIBCPPABI_VERSION // Implement all new and delete operators as weak definitions // in this shared library, so that they can be overriden by programs @@ -134,7 +134,7 @@ operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT ::operator delete[](ptr); } -#endif +//#endif // _LIBCPPABI_VERSION namespace std { |