code completion does not work in some case~

CodeLite installation/troubleshooting forum
bhlzlx
CodeLite Curious
Posts: 2
Joined: Fri Aug 21, 2015 10:04 am
Genuine User: Yes
IDE Question: c++
Contact:

code completion does not work in some case~

Post by bhlzlx »

for example,

Code: Select all

    struct MD5Mesh
    {
        unsigned int    m_nNumVertices;
        VertexBuffer *  m_pVertexBuffer;
        VertexBuffer *  m_pUVBuffer;
        VertexBuffer*   m_pIndexBuffer;
        VertexArray*    m_pVertexArray;
    };
MD5Mesh mesh;
after you type "mesh.",the code completion works well,
but ,when you type " mesh.m_pVertexBuffer->",
the code completion does not work at all~
my codelite is 8.2.0 x86_64 edition.
wish a fix for this problem~
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: code completion does not work in some case~

Post by eranif »

1. settings->code completion->enable clang code completion
2. re-build your project
3. please read the "HOW TO POST" thread (see my signature)


Eran
Make sure you have read the HOW TO POST thread
bhlzlx
CodeLite Curious
Posts: 2
Joined: Fri Aug 21, 2015 10:04 am
Genuine User: Yes
IDE Question: c++
Contact:

Re: code completion does not work in some case~

Post by bhlzlx »

sorry for my post & thanks for your reply,i will read your signature and not make a similar mistake again. :D
Post Reply