public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/56922] New: set: the default constructor should be explicit
@ 2013-04-11 15:57 akim.demaille at gmail dot com
  2013-04-11 16:08 ` [Bug libstdc++/56922] " akim.demaille at gmail dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: akim.demaille at gmail dot com @ 2013-04-11 15:57 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56922
           Summary: set: the default constructor should be explicit
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: akim.demaille@gmail.com


Hi all,

According to http://llvm.org/bugs/show_bug.cgi?id=15724, there is no default
constructor for set, only a constructor whose arguments are optional, but it
turns out that this constructor is explicit.  So, at least according to C++98
(I don't know about C++11), the following piece of code is expected to fail.


$ cat /tmp/set.cc
#include <set>
int
main()
{
  std::set<int> s = {};
}
$ g++-mp-4.8 -std=c++11 -Wall /tmp/set.cc

Clang rejects it.

$ clang++-mp-3.3 -std=c++11 -Wall /tmp/set.cc -stdlib=libc++
/tmp/set.cc:5:17: error: chosen constructor is explicit in copy-initialization
  std::set<int> s = {};
                ^   ~~
/opt/local/libexec/llvm-3.3/bin/../lib/c++/v1/set:378:14: note: constructor
declared here
    explicit set(const value_compare& __comp = value_compare())
             ^
1 error generated.

The actual case at hand is a function with an optional argument which is a set,
and I used "= {}", which is rejected by clang++.

Cheers!


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

end of thread, other threads:[~2014-03-18 18:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-11 15:57 [Bug libstdc++/56922] New: set: the default constructor should be explicit akim.demaille at gmail dot com
2013-04-11 16:08 ` [Bug libstdc++/56922] " akim.demaille at gmail dot com
2013-04-11 16:16 ` paolo.carlini at oracle dot com
2013-04-11 16:24 ` akim.demaille at gmail dot com
2013-04-11 16:33 ` redi at gcc dot gnu.org
2014-01-29 15:48 ` [Bug libstdc++/56922] [lwg/2193] " redi at gcc dot gnu.org
2014-03-18 18:22 ` 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).