Code::Blocks Forums

User forums => Help => Topic started by: Aryan1508 on October 02, 2020, 11:00:42 pm

Title: Code completion doesn't work when intialising variables with {} in C++
Post by: Aryan1508 on October 02, 2020, 11:00:42 pm
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 :-[ :-[