Author Topic: codecomplete don't support typedef struct ??  (Read 2408 times)

Offline mmkider

  • Almost regular
  • **
  • Posts: 150
codecomplete don't support typedef struct ??
« 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
« Last Edit: December 02, 2008, 07:35:50 am by mmkider »