News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Code Completion

Started by mann, January 04, 2007, 11:16:59 PM

Previous topic - Next topic

mann

Hallo,

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

this doesnt work
struct bla
{
int h1;
int h2;
};

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


while this does although it wont compile obviously

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