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++/19076] Pointer to member function not matched to pointer to member template


------- Additional Comments From pcarlini at suse dot de  2004-12-20 13:40 -------
Hi Giovanni. Indeed, I don't think typedefs are directly involved and probably
we can further simplify like this:

===========================================
struct A {}; 
 
template<typename>   struct B; 
template<typename T> struct B<T A::*> {}; 
 
B<void(A::*)()> b;
===========================================

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19076


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