Author Topic: Code completion doesn't work when intialising variables with {} in C++  (Read 3147 times)

Aryan1508

  • Guest
I have been using the Code Blocks IDE for a while now. I recently noticed this issue. The code completion in Code Blocks does not suggest/reccomend variables when I initialise them with `{}`
For example

Refer to the attachments to see the code completion by Codeblocks

 
TEST CASE 1 :
Code
int variable = 5;
Code completion suggests variable after typing vari :)

TEST CASE 2:
Code
int variable{5};
Code completion does not suggest variable when typing vari :-[ :-[