码迷,mamicode.com
首页 > 其他好文 > 详细

no matching function for call to 'make_pair(std::string&, size_t&)'

时间:2017-10-20 16:02:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:cal   red   pos   string   redhat6   hat   matching   size_t   style   

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))

no matching function for call to 'make_pair(std::string&, size_t&)'

标签:cal   red   pos   string   redhat6   hat   matching   size_t   style   

原文地址:http://www.cnblogs.com/zl1991/p/7699510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!