Hello Coders,
If I write C++ code, I use features of the C++11 standard.
Unfortunately Code::Blocks seems to be unable to handle the C++11 initialization syntax for variables.
// old syntax
int i = 0;
// C++11 syntax
int i {0};
Whenever I want to use a variable which I have initialized by using the C++11 syntax, I don't get any help/completion/suggestion from the IDE. That is very unfortunate.
How can I fix this issue?
Greetings
ZaHaDum1984