Hi,
First off, I really like the improved syntax highlighting for C++ in the new release. However, there is one case where it breaks. If I have something like this inside a class:
static const int abc = 1 << 4;
then the highlighting in the subsequent lines of code is broken. Interestingly, any other operators work fine also the right shift operator. For example, the following lines do not break the syntax highlighting:
static const int abc = 1; static const int abc = 1 * 4; static const int abc = 1 >> 4;