Add continuation support for comma and backslash characters.
This commit is contained in:
committed by
sftnight
parent
499b522de5
commit
df4aea2fb0
@ -139,9 +139,6 @@ namespace cling {
|
||||
Tok.startToken(curPos);
|
||||
bool nextWasPunct = true;
|
||||
while (true) {
|
||||
|
||||
if(*curPos == '\\')
|
||||
curPos += 2;
|
||||
// On comment skip until the eof token.
|
||||
if (curPos[0] == '/' && curPos[1] == '/') {
|
||||
while (*curPos != '\0' && *curPos != '\r' && *curPos != '\n')
|
||||
|
Reference in New Issue
Block a user