public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization
@ 2012-01-03 22:04 redi at gcc dot gnu.org
  2012-02-02  6:08 ` [Bug c++/51747] [C++11] cannot call defaulted " pinskia at gcc dot gnu.org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: redi at gcc dot gnu.org @ 2012-01-03 22:04 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 51747
           Summary: [C++11] cannot call copy constructor using
                    list-initialization
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: redi@gcc.gnu.org
                CC: jason@gcc.gnu.org


struct X {
   X() = default;
   X(const X&) = default;
#ifdef OK
   X(int) { }
#endif
};

X x;
X x2{x};

t.cc:10:7: error: too many initializers for 'X'

(It compiles fine if OK is defined.)

Should overload resolution choose the copy constructor?
If not, could there be a better diagnostic?


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

* [Bug c++/51747] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
@ 2012-02-02  6:08 ` pinskia at gcc dot gnu.org
  2013-04-25 11:30 ` redi at gcc dot gnu.org
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-02-02  6:08 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2012-02-02
     Ever Confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-02-02 06:07:37 UTC ---
Confirmed.


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

* [Bug c++/51747] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
  2012-02-02  6:08 ` [Bug c++/51747] [C++11] cannot call defaulted " pinskia at gcc dot gnu.org
@ 2013-04-25 11:30 ` redi at gcc dot gnu.org
  2014-03-19 17:29 ` [Bug c++/51747] [DR 1467] " redi at gcc dot gnu.org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: redi at gcc dot gnu.org @ 2013-04-25 11:30 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> 2013-04-25 11:30:48 UTC ---
This is http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3539.html#1467


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
  2012-02-02  6:08 ` [Bug c++/51747] [C++11] cannot call defaulted " pinskia at gcc dot gnu.org
  2013-04-25 11:30 ` redi at gcc dot gnu.org
@ 2014-03-19 17:29 ` redi at gcc dot gnu.org
  2014-03-19 17:31 ` redi at gcc dot gnu.org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: redi at gcc dot gnu.org @ 2014-03-19 17:29 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mjbshaw at hotmail dot com

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 60592 has been marked as a duplicate of this bug. ***


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2014-03-19 17:29 ` [Bug c++/51747] [DR 1467] " redi at gcc dot gnu.org
@ 2014-03-19 17:31 ` redi at gcc dot gnu.org
  2014-03-20 21:27 ` jason at gcc dot gnu.org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: redi at gcc dot gnu.org @ 2014-03-19 17:31 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |SUSPENDED


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2014-03-19 17:31 ` redi at gcc dot gnu.org
@ 2014-03-20 21:27 ` jason at gcc dot gnu.org
  2014-03-24 16:03 ` jason at gcc dot gnu.org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2014-03-20 21:27 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|SUSPENDED                   |ASSIGNED

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
I don't think it needs to be suspended; the direction is clear even if the
issue hasn't been moved to DR yet.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2014-03-20 21:27 ` jason at gcc dot gnu.org
@ 2014-03-24 16:03 ` jason at gcc dot gnu.org
  2014-04-11 18:25 ` jason at gcc dot gnu.org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2014-03-24 16:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Created attachment 32436
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32436&action=edit
patch

Here's a fix.  I suppose it should probably wait until after 4.9.0.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2014-03-24 16:03 ` jason at gcc dot gnu.org
@ 2014-04-11 18:25 ` jason at gcc dot gnu.org
  2014-05-05 16:05 ` jason at gcc dot gnu.org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2014-04-11 18:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Fri Apr 11 18:25:02 2014
New Revision: 209314

URL: http://gcc.gnu.org/viewcvs?rev=209314&root=gcc&view=rev
Log:
    DR 1467
    PR c++/51747
    * decl.c (reshape_init_r): Handle a single element of class type.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/initlist83.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/decl.c
    trunk/gcc/testsuite/g++.dg/init/aggr4.C


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2014-04-11 18:25 ` jason at gcc dot gnu.org
@ 2014-05-05 16:05 ` jason at gcc dot gnu.org
  2015-01-16  9:10 ` ville.voutilainen at gmail dot com
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2014-05-05 16:05 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.10.0

--- Comment #7 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed for the next release.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2014-05-05 16:05 ` jason at gcc dot gnu.org
@ 2015-01-16  9:10 ` ville.voutilainen at gmail dot com
  2015-01-16 17:04 ` tom at honermann dot net
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ville.voutilainen at gmail dot com @ 2015-01-16  9:10 UTC (permalink / raw)
  To: gcc-bugs

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

Ville Voutilainen <ville.voutilainen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |ville.voutilainen at gmail dot com
         Resolution|FIXED                       |---

--- Comment #8 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
This case fails:

struct base {
};

struct derived : base {
    derived(const base &state)
    : base{state} // Gcc, Clang, and EDG reject.
    {}
};

void f(base b) {
    derived d{b};

}

Should this be a separate bug? The call of the implicitly-defaulted
copy constructor fails using list-initialization, so this seems like
it should be part of the same PR.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2015-01-16  9:10 ` ville.voutilainen at gmail dot com
@ 2015-01-16 17:04 ` tom at honermann dot net
  2015-01-25 18:35 ` ville.voutilainen at gmail dot com
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tom at honermann dot net @ 2015-01-16 17:04 UTC (permalink / raw)
  To: gcc-bugs

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

Tom Honermann <tom at honermann dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tom at honermann dot net

--- Comment #9 from Tom Honermann <tom at honermann dot net> ---
Note that call of the implicitly-defaulted copy constructor using
list-initialization is accepted for aggregate data members (verified using gcc
trunk (5.0 (c++-concepts branch), svn revision 219158))

$ cat t.cpp 
struct base {
};

struct encapsulate {
    encapsulate(const base &state)
    : b{state} // accepted.
    {}
    base b;
};

void f(base b) {
    encapsulate e{b};
}


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2015-01-16 17:04 ` tom at honermann dot net
@ 2015-01-25 18:35 ` ville.voutilainen at gmail dot com
  2015-04-22 12:01 ` jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ville.voutilainen at gmail dot com @ 2015-01-25 18:35 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
Also,

struct base {
        int x;
};

struct derived : base {
    derived(const base &state)
    : base{state}
    {}
};

is diagnosed with

base-aggr-init2.cpp: In constructor ‘derived::derived(const base&)’:
base-aggr-init2.cpp:7:17: error: cannot convert ‘const base’ to ‘int’ in
initialization
     : base{state}
                 ^

so it doesn't look like Core 1467 is handled in base class initializers
at all.
>From gcc-bugs-return-474792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Jan 25 18:37:36 2015
Return-Path: <gcc-bugs-return-474792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14985 invoked by alias); 25 Jan 2015 18:35:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30718 invoked by uid 48); 25 Jan 2015 18:08:03 -0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
Date: Sun, 25 Jan 2015 18:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-51747-4-sTeEKNcD0C@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-51747-4@http.gcc.gnu.org/bugzilla/>
References: <bug-51747-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-01/txt/msg02787.txt.bz2
Content-length: 537

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

--- Comment #10 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
This code fails with the current trunk:

struct B {};
struct D : B {D(B b) : B{b} {}};


base-aggr-init.cpp: In constructor ‘D::D(B)’:
base-aggr-init.cpp:2:27: error: too many initializers for ‘B’
 struct D : B {D(B b) : B{b} {}};
                           ^

As far as I can see, the function process_init_constructor_record in typeck2.c 
emits the diagnostic.
>From gcc-bugs-return-474795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Jan 25 20:33:12 2015
Return-Path: <gcc-bugs-return-474795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7204 invoked by alias); 25 Jan 2015 20:32:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6353 invoked by uid 48); 25 Jan 2015 20:30:32 -0000
From: "mittorn at sibmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/64790] New: gcc generates unreliable code on arm with -mstructure-size-boundary2
Date: Sun, 25 Jan 2015 20:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mittorn at sibmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter
Message-ID: <bug-64790-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-01/txt/msg02789.txt.bz2
Content-length: 732

https://gcc.gnu.org/bugzilla/show_bug.cgi?idd790

            Bug ID: 64790
           Summary: gcc generates unreliable code on arm with
                    -mstructure-size-boundary2
           Product: gcc
           Version: 4.8.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mittorn at sibmail dot com

After rebuilding many of system libraries with -mstructure-size-boundary2 i
found that fsck.fat does not work propertly and all gtk applications does not
correctly handle input and xfce4-desktop shows icons with wrong coordinates
After rebuilding dosfstools and libX11 problem was solved


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2015-01-25 18:35 ` ville.voutilainen at gmail dot com
@ 2015-04-22 12:01 ` jakub at gcc dot gnu.org
  2015-05-07 16:47 ` jason at gcc dot gnu.org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-04-22 12:01 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|5.0                         |5.2

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 5.1 has been released.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2015-04-22 12:01 ` jakub at gcc dot gnu.org
@ 2015-05-07 16:47 ` jason at gcc dot gnu.org
  2015-05-07 16:47 ` jason at gcc dot gnu.org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2015-05-07 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu May  7 16:46:49 2015
New Revision: 222881

URL: https://gcc.gnu.org/viewcvs?rev=222881&root=gcc&view=rev
Log:
        DR 1467
        PR c++/51747
        * typeck2.c (digest_init_r): Fix single element list.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/initlist95.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/typeck2.c


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2015-05-07 16:47 ` jason at gcc dot gnu.org
@ 2015-05-07 16:47 ` jason at gcc dot gnu.org
  2015-05-07 16:48 ` jason at gcc dot gnu.org
  2015-06-09 16:56 ` jason at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2015-05-07 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu May  7 16:46:58 2015
New Revision: 222882

URL: https://gcc.gnu.org/viewcvs?rev=222882&root=gcc&view=rev
Log:
        DR 1467
        PR c++/51747
        * typeck2.c (digest_init_r): Fix single element list.

Added:
    branches/gcc-5-branch/gcc/testsuite/g++.dg/cpp0x/initlist95.C
Modified:
    branches/gcc-5-branch/gcc/cp/ChangeLog
    branches/gcc-5-branch/gcc/cp/typeck2.c


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (13 preceding siblings ...)
  2015-05-07 16:47 ` jason at gcc dot gnu.org
@ 2015-05-07 16:48 ` jason at gcc dot gnu.org
  2015-06-09 16:56 ` jason at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2015-05-07 16:48 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org

--- Comment #15 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.


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

* [Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
  2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
                   ` (14 preceding siblings ...)
  2015-05-07 16:48 ` jason at gcc dot gnu.org
@ 2015-06-09 16:56 ` jason at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: jason at gcc dot gnu.org @ 2015-06-09 16:56 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #16 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Jun  9 16:56:12 2015
New Revision: 224289

URL: https://gcc.gnu.org/viewcvs?rev=224289&root=gcc&view=rev
Log:
        DR 1467
        PR c++/51747
        * typeck2.c (digest_init_r): Replace previous change with
        gcc_unreachable.

Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/typeck2.c


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

end of thread, other threads:[~2015-06-09 16:56 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-03 22:04 [Bug c++/51747] New: [C++11] cannot call copy constructor using list-initialization redi at gcc dot gnu.org
2012-02-02  6:08 ` [Bug c++/51747] [C++11] cannot call defaulted " pinskia at gcc dot gnu.org
2013-04-25 11:30 ` redi at gcc dot gnu.org
2014-03-19 17:29 ` [Bug c++/51747] [DR 1467] " redi at gcc dot gnu.org
2014-03-19 17:31 ` redi at gcc dot gnu.org
2014-03-20 21:27 ` jason at gcc dot gnu.org
2014-03-24 16:03 ` jason at gcc dot gnu.org
2014-04-11 18:25 ` jason at gcc dot gnu.org
2014-05-05 16:05 ` jason at gcc dot gnu.org
2015-01-16  9:10 ` ville.voutilainen at gmail dot com
2015-01-16 17:04 ` tom at honermann dot net
2015-01-25 18:35 ` ville.voutilainen at gmail dot com
2015-04-22 12:01 ` jakub at gcc dot gnu.org
2015-05-07 16:47 ` jason at gcc dot gnu.org
2015-05-07 16:47 ` jason at gcc dot gnu.org
2015-05-07 16:48 ` jason at gcc dot gnu.org
2015-06-09 16:56 ` jason 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).