commit | 0487d5b856a28a204b6624ab56b30c082bab6be7 | [log] [tgz] |
---|---|---|
author | Andrew Hsieh <andrewhsieh@google.com> | Thu Mar 07 15:45:23 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 07 15:45:24 2013 +0000 |
tree | 8304d5e555de6c183d54ee028517f3947b314df6 | |
parent | 0763aa280e621602bad5083fc959178ef19ad0b1 [diff] | |
parent | 2537dedfc86b2340abae1697f58f3dbfd5a6dcfe [diff] |
Merge "Refine new1_3 exception test."
diff --git a/sources/cxx-stl/gabi++/src/new.cc b/sources/cxx-stl/gabi++/src/new.cc index de9cf7d..8148556 100644 --- a/sources/cxx-stl/gabi++/src/new.cc +++ b/sources/cxx-stl/gabi++/src/new.cc
@@ -69,5 +69,5 @@ __attribute__ ((weak)) void* operator new[](std::size_t size, const std::nothrow_t& no) throw() { - return ::operator new[](size, no); + return ::operator new(size, no); }