commit | e7169e23443638e544a8a985fec5860a791beece | [log] [tgz] |
---|---|---|
author | Andrew Hsieh <andrewhsieh@google.com> | Thu Mar 07 15:45:44 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 07 15:45:45 2013 +0000 |
tree | 92e20b88ff8e04fd71fda718d8d8b2ade021c07a | |
parent | 0487d5b856a28a204b6624ab56b30c082bab6be7 [diff] | |
parent | e61315226e5dc3db9292e78d220d19141602ae8a [diff] |
Merge "Refine pr23299 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); }