Page 1 of 1
code completion with declaration with extra parenthesis.
Posted: Fri Apr 20, 2012 10:08 pm
by Jarod42
Code: Select all
int (bar_not_visible)();
int bar_visible();
void foo()
{
bar_|Ctrl+Space
}
bar_not_visible is not suggested whereas bar_visible is.
(lua C API uses the syntax with extra parenthesis).
CL version : v.3.5.5377
Re: code completion with declaration with extra parenthesis.
Posted: Sat Apr 21, 2012 1:34 am
by eranif
Hi Jarod42!
If you are using codelite's normal build system (e.g. no custom makefile) - enable clang from:
Code: Select all
settings -> tags settings -> clang -> enable clang code completion
It should fix this
Eran
code completion with declaration with extra ().(Solved)
Posted: Sat Apr 21, 2012 2:19 am
by Jarod42
It fixes this, thanks.