User forums > Using Code::Blocks

Code Completion

(1/1)

mann:
Hallo,

Why does Code Completion not work properly in a C project?

this doesnt work

--- Code: ---struct bla
{
int h1;
int h2;
};

int main()
{
struct bla test;
test.
return 0;
}

--- End code ---

while this does although it wont compile obviously


--- Code: ---struct bla
{
int h1;
int h2;
};

int main()
{
bla test;
test.
return 0;
}

--- End code ---

I have tried 2 nightly builds from december 19th and january 3rd. :?:

greetings hokkaido

Navigation

[0] Message Index

Go to full version