問題を示すために、この単純な(役に立たない)コードがあります。
template<typename _Tx, typename _Ty>
struct foo{};
#define TO_STRING(Type) #Type
int main()
{
std::string sInt = TO_STRING(int);
std::string sfoo1 = TO_STRING(foo<int, float>); //warning and unexpected value - "foo<int"
std::string sfoo2 = TO_STRING((foo<int, float>)); //no warning, still unexpected value "(foo<int, float>)"
}
を使用せずに複数の引数を持つテンプレートをマクロに渡す方法はあります
()
か?