public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/107527] New: warning: declaration of ‘void operator delete(void*, std::size_t)’ has a different exception specifier [-Wsystem-headers]
@ 2022-11-04 21:30 redi at gcc dot gnu.org
  2022-11-04 21:34 ` [Bug c++/107527] " pinskia at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: redi at gcc dot gnu.org @ 2022-11-04 21:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107527

            Bug ID: 107527
           Summary: warning: declaration of ‘void operator delete(void*,
                    std::size_t)’ has a different exception specifier
                    [-Wsystem-headers]
           Product: gcc
           Version: 12.2.1
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
  Target Milestone: ---

This code compiles cleanly unless you use -Wsystem-headers:

#include <new>
#include <cstdlib>

void* operator new(std::size_t n)
{
  return std::malloc(n);
}

void operator delete(void* p)
{
  std::free(p);
}

void operator delete(void* p, std::size_t)
{
  std::free(p);
}


$ g++ del.C -c
$ g++ del.C -c -Wsystem-headers
del.C:9:6: warning: declaration of ‘void operator delete(void*)’ has a
different exception specifier [-Wsystem-headers]
    9 | void operator delete(void* p)
      |      ^~~~~~~~
In file included from del.C:1:
/usr/include/c++/12/new:130:6: note: from previous declaration ‘void operator
delete(void*) noexcept’
  130 | void operator delete(void*) _GLIBCXX_USE_NOEXCEPT
      |      ^~~~~~~~
del.C:14:6: warning: declaration of ‘void operator delete(void*, std::size_t)’
has a different exception specifier [-Wsystem-headers]
   14 | void operator delete(void* p, std::size_t)
      |      ^~~~~~~~
/usr/include/c++/12/new:135:6: note: from previous declaration ‘void operator
delete(void*, std::size_t) noexcept’
  135 | void operator delete(void*, std::size_t) _GLIBCXX_USE_NOEXCEPT
      |      ^~~~~~~~


But the warning is correct, and indicates a problem in the user code. It should
not be suppressed by the system header.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug c++/107527] warning: declaration of ‘void operator delete(void*, std::size_t)’ has a different exception specifier [-Wsystem-headers]
  2022-11-04 21:30 [Bug c++/107527] New: warning: declaration of ‘void operator delete(void*, std::size_t)’ has a different exception specifier [-Wsystem-headers] redi at gcc dot gnu.org
@ 2022-11-04 21:34 ` pinskia at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-11-04 21:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107527

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I thought I had saw this one before. Specifically something related to Darwin.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-04 21:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-04 21:30 [Bug c++/107527] New: warning: declaration of ‘void operator delete(void*, std::size_t)’ has a different exception specifier [-Wsystem-headers] redi at gcc dot gnu.org
2022-11-04 21:34 ` [Bug c++/107527] " pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).