Page 1 of 1

Code colours

Posted: Tue Jun 30, 2015 1:25 pm
by Pakaru
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.

Re: Code colours

Posted: Tue Jun 30, 2015 2:35 pm
by eranif
Pakaru wrote:int a=0,b=1;

that b wont b highlighted.
This is a known issue
Pakaru 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;
Make sure that you have the proper 'using namespace std;' and the include file in your code
Eran