forked from qt-creator/qt-creator
CPlusPlus: Use QVector<Token> instead of QList
Better suited to avoid the indirection (sizeof(Token) > sizeof(void *)) Change-Id: Ia5f42781e720ef6aa8161f8f81ae8ddd8e58c837 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
@@ -85,7 +85,7 @@ void CppHighlighter::highlightBlock(const QString &text)
|
||||
tokenize.setLanguageFeatures(features);
|
||||
|
||||
int initialLexerState = lexerState;
|
||||
const QList<Token> tokens = tokenize(text, initialLexerState);
|
||||
const Tokens tokens = tokenize(text, initialLexerState);
|
||||
lexerState = tokenize.state(); // refresh lexer state
|
||||
|
||||
initialLexerState &= ~0x80; // discard newline expected bit
|
||||
|
||||
Reference in New Issue
Block a user