public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/48631] New: [C++0x] default_delete<T[]> accepts pointer conversions in function call operator
@ 2011-04-15 19:56 daniel.kruegler at googlemail dot com
  2011-04-16  1:19 ` [Bug libstdc++/48631] " paolo.carlini at oracle dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: daniel.kruegler at googlemail dot com @ 2011-04-15 19:56 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48631

           Summary: [C++0x] default_delete<T[]> accepts pointer
                    conversions in function call operator
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: daniel.kruegler@googlemail.com


The following program using 4.7.0 20110409 (experimental) should be rejected,
but is accepted:

//------------
#include <memory>

struct B {};
struct D : B {};

int main() {
  D d;
  std::default_delete<B[]> db;
  typedef decltype(db(&d)) type;
}
//------------

Reason for this deviation of the spec is the missing deleted function call
operator as described in [unique.ptr.dltr.dflt1]:

template <class T> struct default_delete<T[]> {
  constexpr default_delete() noexcept = default;
  void operator()(T*) const;
  template <class U> void operator()(U*) const = delete;
};


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

end of thread, other threads:[~2011-04-16  2:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-15 19:56 [Bug libstdc++/48631] New: [C++0x] default_delete<T[]> accepts pointer conversions in function call operator daniel.kruegler at googlemail dot com
2011-04-16  1:19 ` [Bug libstdc++/48631] " paolo.carlini at oracle dot com
2011-04-16  2:04 ` paolo at gcc dot gnu.org
2011-04-16  2:08 ` paolo at gcc dot gnu.org
2011-04-16  2:08 ` paolo.carlini at oracle dot com
2011-04-16  2:09 ` paolo.carlini at oracle dot com

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).