public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "akim.demaille at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/56922] New: set: the default constructor should be explicit
Date: Thu, 11 Apr 2013 15:57:00 -0000	[thread overview]
Message-ID: <bug-56922-4@http.gcc.gnu.org/bugzilla/> (raw)


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!


             reply	other threads:[~2013-04-11 15:57 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-11 15:57 akim.demaille at gmail dot com [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-56922-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).