forked from qt-creator/qt-creator
C++: Introduce C++11 raw string literals
Although they are now supported by the lexer and parser, it is worth to remind that we still need to address an issue concerning the highlight of multiline literals (which with the advent of the new raw strings will become more common). Task-number: QTCREATORBUG-6722 Change-Id: I137337a9ac0152a1f8b9faded0b960c6fe3dd38a Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
This commit is contained in:
1
src/libs/3rdparty/cplusplus/Lexer.h
vendored
1
src/libs/3rdparty/cplusplus/Lexer.h
vendored
@@ -91,6 +91,7 @@ private:
|
||||
static int classifyOperator(const char *string, int length);
|
||||
|
||||
void scanStringLiteral(Token *tok, unsigned char hint = 0);
|
||||
void scanRawStringLiteral(Token *tok, unsigned char hint = 0);
|
||||
void scanCharLiteral(Token *tok, unsigned char hint = 0);
|
||||
void scanUntilQuote(Token *tok, unsigned char quote);
|
||||
void scanNumericLiteral(Token *tok);
|
||||
|
||||
Reference in New Issue
Block a user