1

に変換int __stdcall A::(int, int)したいint __stdcall (A*, int, int)

私のコードは

class A {
public:
    int __stdcall B(int, int);
};

template<typename C, typename P1, typename P2>
struct Mem2Normal<int __stdcall C::(P1, P2)> {
    typedef int __stdcall (C*, P1, P2) type;
}; 

Mem2Normal<decltype(A::B)>::type

多くの構文エラーが発生しました。修正方法を教えてください。

4

1 に答える 1