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

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

vector<int>Random;

So far everything is right, oh when I start typing:

Random.push_back();

Dev C++ doesn't 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 into the function, who uses dev c++ knows what I'm talking.

Author: Rhuan Carlos, 2017-01-18

1 answers

Try enabling 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 depending on the need you may need to use tools that will assist in your development, such as: static code analyzer.

 3
Author: David Araujo, 2017-01-18 17:29:44