Page 1 of 1

Minor issue with 'final'

Posted: Wed Jul 02, 2014 6:39 am
by marksibly
Hi,

Just a minor point: C++11 'final', appears to stuff up codelite's code completion, eg:

class Blah final{
};

...stops you being able to use code completion with Blah. Get rid of the final and all is OK.

I'm not actually using it for anything, and I don't know how c++11 friendly codelite is supposed to be (although it seems to handle 'auto' pretty well!), but I thought it was worth mentioning.

Bye,
Mark

Re: Minor issue with 'final'

Posted: Wed Jul 02, 2014 9:32 am
by eranif
As a workaround, you can add 'final' to tokens table, re-parse and it will work again

Settings->Tags Settings->CTags->Advanced->Tokens

Simply add 'final' click OK and retag your workspace.

Eran