News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Code Completion Problem with Modern C++

Started by kiritow, March 23, 2017, 06:04:11 AM

Previous topic - Next topic

kiritow

Hi, I am using Code::Blocks 16.01 on Win8.1 .
I met a problem while I was coding in C++11.
When I typed an 'auto' type, the parser couldn't understand what I was typing (I tried 're-parse', but it didn't work. ).
How to solve this problem?

Example Code:

struct ExampleStruct
{
    int a,b;
};

ExampleStruct GetExample()
{
    ExampleStruct a;
    return a;
}

void func()
{
    auto x=GetExample();
    x.a=1;    /// Here, when I typed "x.", the auto complete box didn't show up.
}

oBFusCATed

Known problem - our parser doesn't understand most of the c++11 features.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

icequan233

As oBFusCATed said, codecompeltion can't parse the code for C++11 features, but there is another plugin named Clang CC  https://github.com/yvesdm3000/ClangLib , I think it should can compete the code of C++11, otherwise, I never use it. :)