我尝试编译一些与以下代码非常相似的代码:
#include <string>
#include <unordered_map>
class A{
};
int main(int argc, char* argv[]){
std::unordered_map<std::string, std::reference_wrapper<const A>> stringToRef;
A a;
const A& b = a;
stringToRef.insert(std::make_pair("Test", b));
return 0;
}
但无法弄清楚,为什么它不编译。我很确定,相同的代码在 MS Visual Studio 2012 上编译良好 - 但在 Visual Studio 2013 上,它报告以下编译错误:
error C2280: std::reference_wrapper<const A>::reference_wrapper(_Ty &&): attempting to reference a deleted function
我试图在我的班级中添加复制、移动、赋值运算符 - 但无法摆脱这个错误。我怎样才能准确地找出这个错误指的是哪个已删除的函数?