用于C / C ++开发人员的Eclipse IDE:错误显示“无效参数”错误?

问题描述 投票:1回答:1

我在map_name.insert(make_pair("string_name", int_name);的Eclipse IDE for C / C ++ Developers Photon(4.8.0)中收到了无效参数错误。

我正在使用GCC 8.2.0。我正在尝试使用STL的一些简单的东西。

尝试insert(make_pair())insert(pair<string, int>())得到相同的IDE错误(语义错误)。这是为什么?

码:

#include <iostream>
#include <map>
using namespace std;

int main()
{
    map<string, int> ages;

    ages["Mike"] = 21;
    ages["Johnny"] = 20;
    ages["Vicky"] = 30;
    ages["Mike"] = 42;

//  ages.insert(make_pair("Peter", 100));
    ages.insert(pair < string, int > ("Peter", 100));

    for(map<string, int>::iterator it = ages.begin(); it!=ages.end(); it++)
    {
        cout<< it->first<<": "<< it->second<<endl;

    }

     return (0);
}

这是IDE中显示的错误:

Error

c++ eclipse-cdt
1个回答
4
投票

GCC 8附带的标准库实现使用称为__is_constructible的类型特征,Eclipse CDT的解析器尚不支持。

当CDT用于解析GCC 8的标准库代码时,这可能导致误报错误。

如果您使用GCC 7或更早版本,则此代码不会出现任何错误。

更新:This eclipse bug跟踪添加对__is_constructible的支持到CDT的解析器。它最近已得到修复,但修复版尚未出现在CDT版本中。

© www.soinside.com 2019 - 2024. All rights reserved.