关于VS2012使用make_pair编译提示“error C2664: “std::make_pair”: 不能将参数 1 从“int”转换为“int &&””
参照微软官方回复:#include#include#include#includeusingnamespacestd;intmain(){stringht="hello";pairps;#ifdefined(FIX1)ps=pair(1,ht);#elifdefined(FIX2)ps=make_pair(1,ht);#elseps=make_pair(1,ht);#endifcoutcl/E