[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2014-06-26 Thread paolo.carlini at oracle dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added CC||niels at

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2013-11-02 Thread paolo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 --- Comment #9 from paolo at gcc dot gnu.org paolo at gcc dot gnu.org --- Author: paolo Date: Sat Nov 2 09:34:13 2013 New Revision: 204312 URL: http://gcc.gnu.org/viewcvs?rev=204312root=gccview=rev Log: /cp 2013-11-02 Paolo Carlini

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2013-11-02 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2013-10-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 Paolo Carlini paolo.carlini at oracle dot com changed: What|Removed |Added Status|NEW |ASSIGNED

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2013-10-30 Thread paolo.carlini at oracle dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 --- Comment #8 from Paolo Carlini paolo.carlini at oracle dot com --- Tentative patch here: http://gcc.gnu.org/ml/gcc-patches/2013-10/msg02536.html

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2012-09-17 Thread poletti.marco at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 poletti.marco at gmail dot com changed: What|Removed |Added CC||poletti.marco at gmail

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2012-09-17 Thread poletti.marco at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 --- Comment #5 from poletti.marco at gmail dot com 2012-09-17 17:55:54 UTC --- Still an issue with GCC 4.7.1. Clang does not have this issue.

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2012-09-17 Thread poletti.marco at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234 --- Comment #6 from poletti.marco at gmail dot com 2012-09-17 17:57:58 UTC --- Still an issue with GCC 4.7.1. Clang does not have this issue. Yet another example: struct C { void operator[](C) { } }; void f() { C x; (C()[x]); }

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2009-11-13 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2009-11-13 21:07 --- *** Bug 42034 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2007-02-06 Thread lidaobing at gmail dot com
--- Comment #2 from lidaobing at gmail dot com 2007-02-07 05:13 --- *** Bug 30725 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29234

[Bug c++/29234] Call to operator() of temporary object wrongly parsed

2006-10-09 Thread bangerth at dealii dot org
--- Comment #1 from bangerth at dealii dot org 2006-10-10 03:51 --- Confirmed: -- struct S { void operator () (); }; void foo () { ( S()() ); } -- g/x /home/bangerth/bin/gcc-4.2-pre/bin/c++ -c x.cc x.cc: In function #8216;void foo()#8217;: x.cc:5: