标签: c++11 tuples
例如
#define MEMBERS(...) using Members = decltype(std::make_tuple(__VA_ARGS__)); struct A { int i; float f; MEMBERS(i, f); // Error };
如何使用宏通过使用其类型以外的成员来定义元组类型?