I'm working on some C++ type system stuff, and I'm having a problem removing const-ness from a member function for use with function trait classes. What is really toubling here is that this works fine with G++, but MSVC10 fails to handle the partial specialization correctly, and I don't know if one of these compilers actually has a bug here.
The question here is, what is the correct way to remove the const qualifier from the member function in such a way that I can get a function type signature?
Take the following code sample:
#include <iostream>
template<typename T> struct RemovePointer { typedef T Type; };
template<typename T> struct RemovePointer<T*> { typedef T Type; };
template<typename R,typename T> struct RemovePointer<R (T::*)> { typedef R Type; };
class A {
public:
static int StaticMember() { return 0; }
int Member() { return 0; }
int ConstMember() const { return 0; }
};
template<typename T> void PrintType(T arg) {
std::cout << typeid(typename RemovePointer<T>::Type).name() << std::endl;
}
int main()
{
PrintType(&A::StaticMember);
PrintType(&A::Member);
PrintType(&A::ConstMember); // WTF?
}
All three of these PrintType statements should print the same thing. MSVC10 prints the following:
int __cdecl(void)
int __cdecl(void)
int (__cdecl A::*)(void)const __ptr64
g++ prints this (which is the expected result):
FivE
FivE
FivE

c++filt). The third should be aint() constbut it says it's aint(). – Johannes Schaub - litb Mar 25 '11 at 16:34