当我编译我的 VS 2010 C++ 项目时,以下段落在文件 c:\program files\microsoft visual studio 10.0\vc\include\utility 中引发错误
template<class _Other1,
class _Other2>
_Pair_base(_Other1&& _Val1, _Other2&& _Val2)
: first(_STD forward<_Other1>(_Val1)),
second(_STD forward<_Other2>(_Val2))
{ // construct from moved values
}
该错误之后是另一个错误 C2439 'std::_Pair_base..::first element could not be convert'
(所有错误都是从德语翻译的,所以在英语中听起来可能略有不同)
我正在尝试在 VS 2010 上编译 AxCrypt 项目,项目文件已自动从 VS 2008 转换(但我不知道它是否可以在那里工作,我只有 VS 2010)。