News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

codecomplete don't support typedef struct ??

Started by mmkider, December 02, 2008, 06:49:53 AM

Previous topic - Next topic

mmkider

codecomplete can prompt a and b; this struct  show correct in the symbol windows .

struct test
{
    int a;
    int b;
};
test QOO;
QOO.a=10;//codeblocks can pop-up hint window

As follow
codecomplete  do nothing, but this struct  show correct in the symbol windows

typedef struct test
{
    int a;
    int b;
}test1;
test1 QOO;
QOO.a=10; //codeblocks can not  pop-up hint window