i'm using Code Blocks 17.12...
speaking on vector... when i do: FuncList[FunctionListIndex].
1 list menu is showed with these:"_M_emplace_aux()".. why these instead the structure list?
i fixed the problem and you don't belive how.
on header file i added the: usingnamespace std;
for continue using the code without 'std'... but these is a 'bug'... maybe the list can be showed on header code... but never on Cpp code... for resolve it, i added the same line on cpp file and now i get the list.. these is strange
Putting usingnamespace std; into a header file is a very bad idea. Don't do it. You're forcing every single file that includes that header, to pull in the entire std into the global namespace.