This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/21484] [g++] using typename doesn't work in case template : template inheritance


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]