no matching function for call to 'make_pair(std::string&, size_t&)'
rtl->push_back(make_pair<string, int>(str, pos));
在redhat6上编译无问题,在centos7上编译出现错误:
no matching function for call to 'make_pair(std::string&, size_t&)'
,这是由于
1 定义于头文件 <utility> 2 template< class T1, class T2 > 3 std::pair<T1,T2> make_pair( T1 t, T2 u );//(C++11 前) 4 template< class T1, class T2 > 5 std::pair<V1,V2> make_pair( T1&& t, T2&& u );//(C++11 起)-(C++14 前) 6 template< class T1, class T2 > 7 constexpr std::pair<V1,V2> make_pair( T1&& t, T2&& u );//(C++14 起)
make_pair在c++11前后修改了声明,对于该错误,有两种修改方式:
1、make_pair(str, pos)
2、make_pair<string, int>(string(str), int(pos))
联系方式:emhhbmdfbGlhbmcxOTkxQDEyNi5jb20=