Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: mmkider on December 02, 2008, 06:49:53 am

Title: codecomplete don't support typedef struct ??
Post by: mmkider on December 02, 2008, 06:49:53 am
codecomplete can prompt a and b; this struct  show correct in the symbol windows .
Code
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
Code
typedef struct test
{
    int a;
    int b;
}test1;
test1 QOO;
QOO.a=10; //codeblocks can not  pop-up hint window