mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 16:41:02 +08:00
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:
parent
da0bfb866e
commit
4177264e09
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user