This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/46289] [4.6 regression] ICE in build_constexpr_constructor_member_initializers, at cp/semantics.c:5513


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> 2010-11-03 16:59:34 UTC ---
(In reply to comment #3)
> mutex() : _M_mutex(PTHREAD_MUTEX_INIT) { }
> 
> which is not portable.

Actually, it should work.  Here's a reduced testcase:

struct A
{
  int i[2];
};

struct B
{
  A a;
  constexpr B(): a({{1,2}}) { }
};


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]