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
Minor issue with 'final'
-
- CodeLite Enthusiast
- Posts: 23
- Joined: Thu Oct 30, 2008 1:40 am
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Minor issue with 'final'
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
Settings->Tags Settings->CTags->Advanced->Tokens
Simply add 'final' click OK and retag your workspace.
Eran
Make sure you have read the HOW TO POST thread