it is not a self compiled version of codelite
OS: windows xp sp3
compiler: mingw64 gcc 5.1.0 and clang 3.6.0
step 1: create a new workspace
step 2: enable c++11 standard
step 3: create a new g++ or clang++ project
step 4: code
Code: Select all
#include <type_traits>
int main()
{
std::is_void<int>:: // code completion works fine after typing ::
}
step 6:
Code: Select all
#include <type_traits>
int main()
{
std::is_void<int>:: // code completion does not work.
}
step 8: bulid, code completion does not work again.(rebuild workspace, retag workspace has no effect)
step 9: do as step 7. code completion works fine again.
Every time after building I need to delete compilation.db and clear clang cache if I using c++11. How to solve this problem?