0
Under review
C++ string recognition bug
C++ code like this seems to be incorrectly recognized:
cout << "hello;"
This line is recognized as cout << "hello; and ", which should be recognized as one sentence.
cout << "hello;"
This line is recognized as cout << "hello; and ", which should be recognized as one sentence.
Customer support service by UserEcho
out << ind << dotID() << "->" << _arg[i]->dotID() << ";" << endl;
It seems to be related to the "_arg[i]->dotID()" call. As soon as I remove the "->" part, the syntax highlighting is correct.