Author Topic: Code Completion  (Read 3529 times)

mann

  • Guest
Code Completion
« on: January 04, 2007, 11:16:59 pm »
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;
}

while this does although it wont compile obviously

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

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

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

greetings hokkaido
« Last Edit: January 05, 2007, 02:20:51 am by mann »