public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/100485] New: False positive in -Wmismatched-new-delete
@ 2021-05-08  9:32 fiesh at zefix dot tv
  2021-05-09 17:49 ` [Bug c++/100485] " msebor at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: fiesh at zefix dot tv @ 2021-05-08  9:32 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 100485
           Summary: False positive in -Wmismatched-new-delete
           Product: gcc
           Version: 11.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fiesh at zefix dot tv
  Target Milestone: ---

The following code triggers -Wmismatched-new-delete:

----------------------------------------

extern "C" void free(void *);
class Base
{
public:
        Base();
        void * operator new(unsigned long, const int &);
        void operator delete(void * ptr, const int &) { free(ptr); }
};
void f()
{
        new (0) Base;
}

----------------------------------------

Supplying `__attribute__((malloc (free, 1)))` to `operator new` also doesn't
help.

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

end of thread, other threads:[~2021-06-16 22:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-08  9:32 [Bug c++/100485] New: False positive in -Wmismatched-new-delete fiesh at zefix dot tv
2021-05-09 17:49 ` [Bug c++/100485] " msebor at gcc dot gnu.org
2021-05-09 18:05 ` fiesh at zefix dot tv
2021-05-09 18:06 ` fiesh at zefix dot tv
2021-05-09 22:04 ` msebor at gcc dot gnu.org
2021-05-10  6:53 ` fiesh at zefix dot tv
2021-05-10 14:39 ` msebor at gcc dot gnu.org
2021-05-10 14:45 ` fiesh at zefix dot tv
2021-06-16 22:55 ` msebor 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).