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

Posted 鸭子船长

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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))

以上是关于no matching function for call to 'make_pair(std::string&, size_t&)'的主要内容,如果未能解决你的问题,请参考以下文章

C++ string.replace 生成“No matching function for call”错误

为啥我得到 [Error] no matching function for call to 'car::car()'

error: no matching function for call to 'std::exception:exception(const char[16])'

错误记录Visual Studio 中编译 NDK 报错 ( no matching function for call to ‘cacheflush‘ cacheflush(); )

Qt error ------ no matching function for call to QObject::connect(QSpinBox*&, <unresolved ove

error: no matching function for call to 'QTime::toString(const char [13]) 利用LCDNumber显示时间