This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/21484] [g++] using typename doesn't work in case template : template inheritance
- From: "smelkov at mph1 dot phys dot spbu dot ru" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 May 2005 05:09:14 -0000
- Subject: [Bug c++/21484] [g++] using typename doesn't work in case template : template inheritance
- References: <20050510082632.21484.smelkov@mph1.phys.spbu.ru>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From smelkov at mph1 dot phys dot spbu dot ru 2005-05-11 05:09 -------
Excuse me. The following is unconditionally offtopic, but
is there a way to use whole base namespace, say something like
template<typename T>
struct A { ... }
template<typename T>
struct B : A<T>
{
using A<T>::* ;
or
using A<T>::;
};
/none of these works, but i think the idea is clear/
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21484