public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/101747] New: Two-argument version of attribute malloc does not perform overload resolution
@ 2021-08-03 11:49 fweimer at redhat dot com
  2021-08-03 20:27 ` [Bug c++/101747] " msebor at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: fweimer at redhat dot com @ 2021-08-03 11:49 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 101747
           Summary: Two-argument version of attribute malloc does not
                    perform overload resolution
           Product: gcc
           Version: 11.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fweimer at redhat dot com
  Target Milestone: ---

This:

struct T1;
struct T2;

void close(T1*);
void close(T2*);

T1* open(const char *) __attribute__ ((__malloc__ (close, 1)));

results in:

t.cc:7:62: error: ‘malloc’ attribute argument 1 is ambiguous
    7 | T1* open(const char *) __attribute__ ((__malloc__ (close, 1)));
      |                                                              ^
t.cc:7:62: note: use a cast to the expected type to disambiguate

This can be observed when building RawTherapee with glibc 2.34:
https://github.com/Beep6581/RawTherapee/issues/6324

Performing overload resolution in this context seems useful, given that the
exact type of the argument should be known at this point (the return type of
the function).

I'm not sure if should add the cast to the glibc sources to work around this.

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

end of thread, other threads:[~2022-12-28 19:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-03 11:49 [Bug c++/101747] New: Two-argument version of attribute malloc does not perform overload resolution fweimer at redhat dot com
2021-08-03 20:27 ` [Bug c++/101747] " msebor at gcc dot gnu.org
2022-11-17 10:23 ` ro at gcc dot gnu.org
2022-12-28 19:57 ` pinskia at gcc dot gnu.org
2022-12-28 19:57 ` 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).