[Bug c++/53965] Member class initialization doesn't work with unordered_set

2012-07-15 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53965 Paolo Carlini changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[Bug c++/53965] Member class initialization doesn't work with unordered_set

2012-07-14 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53965 --- Comment #2 from Jonathan Wakely 2012-07-15 00:29:38 UTC --- The code is not valid, in-class initializers must use a "brace-or-equals-initializer" meaning: A a{ init }; or: A a = init; not: A a( init );

[Bug c++/53965] Member class initialization doesn't work with unordered_set

2012-07-14 Thread gollumdelperdiguero at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53965 --- Comment #1 from gollumdelperdiguero at gmail dot com 2012-07-14 19:56:58 UTC --- Created attachment 27790 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27790 Preprocessed file Preprocessed file generated by g++