VS2012 error C2664: “std::make_pair”:无法将左值绑定到右值引用

Posted Msnow

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VS2012 error C2664: “std::make_pair”:无法将左值绑定到右值引用相关的知识,希望对你有一定的参考价值。

例如:_mapTransportInfos.insert(std::make_pair<uint32, CTransportInfoPtr>(iter_t->m_nID, pinfo));
这句代码在vs2012的c++11就无法编译,报2664错误。可以用如下强制转换来实现:

 

第一种方法(我这没成功)
_mapTransportInfos.insert(std::make_pair<uint32, CTransportInfoPtr>(static_cast<uint32&&>(iter_t->m_nID), staic_cast<CTransportInfoPtr&&>(pinfo)));


第二种方法:

pair<uint32,CTransportInfoPtr> ps = pair<uint32,CTransportInfoPtr>((iter_t->m_nID,pinfo);_mapTransportInfos.insert(ps);

 

参考:http://www.cppblog.com/zhangyq/archive/2013/11/14/204085.aspx

以上是关于VS2012 error C2664: “std::make_pair”:无法将左值绑定到右值引用的主要内容,如果未能解决你的问题,请参考以下文章

C2664:在 64 位编译时

error C2664: “int CWnd::MessageBoxW(LPCTSTR,LPCTSTR,UINT)”: 无法将参数 1 从“const char [9]”转换为“LPCTSTR”

解决error C2664: no instance of constructor "CFileDialog::CFileDialog" matches the list

解决error C2664: no instance of constructor "CFileDialog::CFileDialog" matches the list

error C2664: 'strcpy' : cannot convert parameter 2 from 'LPCTSTR' to 'const char

error C2664: “CreateFileW”: 不能将参数 1 从“char *”转换为“LPCWSTR”