public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/99006] New: make_shared<T[]> silently works
@ 2021-02-08 17:13 Darrell.Wright at gmail dot com
  2021-02-09  8:08 ` [Bug libstdc++/99006] " redi at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Darrell.Wright at gmail dot com @ 2021-02-08 17:13 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99006
           Summary: make_shared<T[]> silently works
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Darrell.Wright at gmail dot com
  Target Milestone: ---

std::make_shared<T[]> in libstdc++ prior to c++20 doesn't fail.

The minimal example is

#include <memory>
int func( ) {
  auto sp = std::make_shared<int[]>( 55 );
  return *sp.get( );
}

will return 55;

libc++ removes it from the overload set and MS STL fails.
https://gcc.godbolt.org/z/PaW6WY

With T = int[], I think
https://timsong-https://timsong-cpp.github.io/cppwp/n4659/util.smartptr.shared.create#1
should make this not work.

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

end of thread, other threads:[~2021-06-18 14:44 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-08 17:13 [Bug libstdc++/99006] New: make_shared<T[]> silently works Darrell.Wright at gmail dot com
2021-02-09  8:08 ` [Bug libstdc++/99006] " redi at gcc dot gnu.org
2021-02-09  8:11 ` redi at gcc dot gnu.org
2021-04-22 13:33 ` redi at gcc dot gnu.org
2021-04-22 15:07 ` cvs-commit at gcc dot gnu.org
2021-05-11 19:50 ` cvs-commit at gcc dot gnu.org
2021-06-18 12:56 ` cvs-commit at gcc dot gnu.org
2021-06-18 14:43 ` cvs-commit at gcc dot gnu.org
2021-06-18 14:44 ` redi 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).