Is there a list of code colouring or tips on colouring.
I define the variable below but tempbits is not added to the auto complete or is coloured like the other variables.
bitset <8> tempBits;
I also noticed that if I declare variables like
int a=0,b=1;
that b wont b highlighted.
Code colours
-
- CodeLite Curious
- Posts: 1
- Joined: Tue Jun 30, 2015 1:07 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Code colours
This is a known issuePakaru wrote:int a=0,b=1;
that b wont b highlighted.
Make sure that you have the proper 'using namespace std;' and the include file in your codePakaru wrote:I define the variable below but tempbits is not added to the auto complete or is coloured like the other variables.
bitset <8> tempBits;
Eran
Make sure you have read the HOW TO POST thread