del_opv.cc: Suppress -Wsized-deallocation.

* libsupc++/del_opv.cc: Suppress -Wsized-deallocation.
	* libsupc++/del_op.cc: Likewise.

From-SVN: r223488
This commit is contained in:
Jason Merrill 2015-05-21 11:12:40 -04:00 committed by Jason Merrill
parent da0bfb866e
commit 4177264e09
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-05-21 Jason Merrill <jason@redhat.com>
* libsupc++/del_opv.cc: Suppress -Wsized-deallocation.
* libsupc++/del_op.cc: Likewise.
2015-05-20 François Dumont <fdumont@gcc.gnu.org>
* include/debug/formatter.h (_GLIBCXX_TYPEID): New macro to simplify

View File

@ -40,6 +40,9 @@ _GLIBCXX_END_NAMESPACE_VERSION
#include "new"
// The sized deletes are defined in other files.
#pragma GCC diagnostic ignored "-Wsized-deallocation"
_GLIBCXX_WEAK_DEFINITION void
operator delete(void* ptr) _GLIBCXX_USE_NOEXCEPT
{

View File

@ -26,6 +26,9 @@
#include <bits/c++config.h>
#include "new"
// The sized deletes are defined in other files.
#pragma GCC diagnostic ignored "-Wsized-deallocation"
_GLIBCXX_WEAK_DEFINITION void
operator delete[] (void *ptr) _GLIBCXX_USE_NOEXCEPT
{