[Bug c++/45114] implement C++0x alias-declaration

2022-11-30 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |4.7.0

[Bug c++/45114] implement C++0x alias-declaration

2011-11-09 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Jonathan Wakely changed: What|Removed |Added Attachment #25746|0 |1 is obsolete|

[Bug c++/45114] implement C++0x alias-declaration

2011-11-09 Thread dodji at seketeli dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #18 from dodji at seketeli dot org 2011-11-09 12:05:08 UTC --- "redi at gcc dot gnu.org" a écrit: > Created attachment 25746 > --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25746 > make use of alias-declarations in libstdc++ >

[Bug c++/45114] implement C++0x alias-declaration

2011-11-09 Thread dodji at seketeli dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #17 from dodji at seketeli dot org 2011-11-09 12:04:18 UTC --- > --- Comment #14 from Benoit Jacob > 2011-11-07 21:57:18 UTC --- > \o/ > > You rock! Thank you, Benoit. :-)

[Bug c++/45114] implement C++0x alias-declaration

2011-11-07 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #16 from Jonathan Wakely 2011-11-07 22:46:13 UTC --- Created attachment 25746 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25746 make use of alias-declarations in libstdc++ here's the library patch to enable all the alias-decl

[Bug c++/45114] implement C++0x alias-declaration

2011-11-07 Thread jacob.benoit.1 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #14 from Benoit Jacob 2011-11-07 21:57:18 UTC --- \o/ You rock!

[Bug c++/45114] implement C++0x alias-declaration

2011-11-07 Thread dodji at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Dodji Seketeli changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug c++/45114] implement C++0x alias-declaration

2011-11-07 Thread dodji at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #13 from Dodji Seketeli 2011-11-07 21:28:55 UTC --- Author: dodji Date: Mon Nov 7 21:28:50 2011 New Revision: 181118 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=181118 Log: PR c++/45114 - Support C++11 alias-declaration g

[Bug c++/45114] implement C++0x alias-declaration

2011-11-05 Thread dodji at seketeli dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #12 from dodji at seketeli dot org 2011-11-05 23:47:57 UTC --- "vincenzo.innocente at cern dot ch" a écrit: > --- Comment #10 from vincenzo Innocente > 2011-10-31 16:06:41 UTC --- > using the patch of comment 8 in the example belo

[Bug c++/45114] implement C++0x alias-declaration

2011-10-31 Thread vincenzo.innocente at cern dot ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #11 from vincenzo Innocente 2011-10-31 16:16:54 UTC --- the example in comment 10 compiles fine if I add a move constructor D(A && ia) : a(ia) {} or a "by value constructor" D(A ia) : a(ia) {}

[Bug c++/45114] implement C++0x alias-declaration

2011-10-31 Thread vincenzo.innocente at cern dot ch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #10 from vincenzo Innocente 2011-10-31 16:06:41 UTC --- using the patch of comment 8 in the example below I get $ c++ -std=gnu++0x -c talias.cc $ c++ -std=gnu++0x -c talias.cc -DALIAS talias.cc: In instantiation of ‘Bar::D Bar::d()

[Bug c++/45114] implement C++0x alias-declaration

2011-10-27 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #9 from Jonathan Wakely 2011-10-27 22:27:35 UTC --- I don't have any self-contained tests but there are a number of TODOs in libstdc++ which indicate places that should use a template alias when available - I'll try the patch and revi

[Bug c++/45114] implement C++0x alias-declaration

2011-10-27 Thread dodji at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #8 from Dodji Seketeli 2011-10-27 19:18:33 UTC --- A candidate patch extending the patch attached in the first comment and allegedly implementing the feature was posted to http://gcc.gnu.org/ml/gcc-patches/2011-10/msg02494.html. If so

[Bug c++/45114] implement C++0x alias-declaration

2011-09-20 Thread dodji at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Dodji Seketeli changed: What|Removed |Added Status|NEW |ASSIGNED AssignedTo|unassigned a

[Bug c++/45114] implement C++0x alias-declaration

2011-08-16 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Jonathan Wakely changed: What|Removed |Added CC||marc.coiffier at free dot

[Bug c++/45114] implement C++0x alias-declaration

2011-04-08 Thread jason at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #5 from Jason Merrill 2011-04-08 15:30:53 UTC --- I stopped working on it before it was usable at all, it's just here in case someone wants to use it as a starting point.

[Bug c++/45114] implement C++0x alias-declaration

2011-04-06 Thread yacwroy at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 --- Comment #4 from Simon Hill 2011-04-06 16:17:35 UTC --- I was trying out this patch to see whether it might be usable to me, just as a preview. Firstly: Is this patch at a stage where it could be possible to complete a make/install, or am I j

[Bug c++/45114] implement C++0x alias-declaration

2010-11-28 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114 Paolo Carlini changed: What|Removed |Added CC||paolo.carlini at oracle dot

[Bug c++/45114] implement C++0x alias-declaration

2010-09-07 Thread bangerth at gmail dot com
--- Comment #2 from bangerth at gmail dot com 2010-09-07 18:08 --- Corresponding paper, for reference: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2258.pdf -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114

[Bug c++/45114] implement C++0x alias-declaration

2010-07-28 Thread jason at gcc dot gnu dot org
--- Comment #1 from jason at gcc dot gnu dot org 2010-07-28 19:13 --- Created an attachment (id=21341) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=21341&action=view) initial incomplete patch -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45114

[Bug c++/45114] implement C++0x alias-declaration

2010-07-28 Thread jason at gcc dot gnu dot org
-- jason at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfirm