[Bug c++/11750] class scope using-declaration lookup not implemented

2021-08-01 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 Andrew Pinski changed: What|Removed |Added CC||meng at g dot clemson.edu --- Comment

[Bug c++/11750] class scope using-declaration lookup not implemented

2012-11-14 Thread fabien at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 --- Comment #9 from fabien at gcc dot gnu.org 2012-11-14 20:12:56 UTC --- Author: fabien Date: Wed Nov 14 20:12:47 2012 New Revision: 193504 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=193504 Log: gcc/testsuite/ChangeLog 2012-11-14

[Bug c++/11750] class scope using-declaration lookup not implemented

2012-11-14 Thread fabien at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 fabien at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/11750] class scope using-declaration lookup not implemented

2011-11-21 Thread fabien at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 fabien at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED Last

[Bug c++/11750] class scope using-declaration lookup not implemented

2011-01-12 Thread balakrishnan.erode at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 Balakrishnan B balakrishnan.erode at gmail dot com changed: What|Removed |Added CC|

[Bug c++/11750] class scope using-declaration lookup not implemented

2011-01-12 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 --- Comment #7 from Jonathan Wakely redi at gcc dot gnu.org 2011-01-12 17:10:17 UTC --- (In reply to comment #6) With the same object when accessed directly produces different results and when accessed using a pointer of same type produces

[Bug c++/11750] class scope using-declaration lookup not implemented

2011-01-12 Thread aschepler at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11750 --- Comment #8 from Andrew Schepler aschepler at gmail dot com 2011-01-12 17:16:29 UTC --- (In reply to comment #6) struct A { virtual void f(); }; struct B : virtual A { virtual void f(); }; struct C : B , virtual A {