struct and CodeCompletion

CodeLite installation/troubleshooting forum
borr
CodeLite Enthusiast
Posts: 34
Joined: Tue Dec 16, 2008 10:43 am
Contact:

struct and CodeCompletion

Post by borr »

CodeCompletion not work with struct definitions:

Code: Select all

struct DocInfo{
       int ID;
       bool edit;
      }DocInf;

DocInf./*CodeComp NOT work*/
//Code Compiling without error's

struct {
       int ID;
       bool edit;
      }DocInf;
DocInf./*CodeComp NOT work*/
//Code Compiling without error's
struct {
       int ID;
       bool edit;
      }DocInfo;
DocInfo DocInf;
DocInf./*CodeComp work*/