标签: c++ c++11 templates
POD的定义:https://en.cppreference.com/w/cpp/named_req/PODType
pair<int,int>似乎符合上述所有规则。
pair<int,int>
但是编译并运行
cout << is_pod<pair<int, int>>::value << endl;
给我0。
我正在使用g ++ 8.2.0