以下简单的代码
#include <xutility>
void foo()
{
std::pair<int, int> a(0, 1);
const std::pair<int, int> b = a;
}
使用Visual C ++编译器编译时2013年11月CTP生成错误:
error C2280: 'std::pair<int,int>::pair(const std::pair<int,int> &)' : attempting to reference a deleted function
这是编译器中的错误还是我应该更改一些编译器标志?