I'm having a problem with Dev C ++ in displaying members of a class

1

To be more exact, when I press "." after some object, type I declare a vector:

vector<int>Random;

So far so good, so when I start typing:

Random.push_back();

Dev c ++ does not help me complete, I know it sounds paranoid, but is it related to the fact that I installed GCC in Dev C ++ on my own? Sometimes it happens when I call a function and the compiler does not show the arguments that go in the function, who uses dev c ++ knows what I'm talking about.

    
asked by anonymous 18.01.2017 / 17:48

1 answer

3

Try to enable the auto-complete option:

Tools > Edit Options > Calss browsing > Completion > Enable code-completion

After that you can access the auto-complete option using Ctrl + space.

Tip: For complex projects, use another IDE such as: Eclipse C / C ++, because according to the need you may need to use tools that will aid in its development, such as: Static code analyzer.

    
18.01.2017 / 18:02