User forums > Using Code::Blocks

codecomplete don't support typedef struct ??

(1/1)

mmkider:
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

--- End code ---
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

--- End code ---

Navigation

[0] Message Index

Go to full version