Incorrect syntax highlighting of single line comments
A free, portable, fast and simple C/C++ IDE
Brought to you by:
orwelldevcpp
Single line comments doesn't expand to the next line if ending with a backslash \.
Code to reproduce:
#include <iostream>
int main(){
std::cout << "Path to typical Windows directory: ";
// We need to escape backslashes: \
std::cout << "C:\\Windows\\" << std::endl;
std::cout << "Can you see it?" << std::endl;
return 0;
}
(Seems that I will also need to report this to sourceforge.net)
Discover when reading this code.
Confirmed, but don't know how to fix it yet.