We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908f78f commit 3806b38Copy full SHA for 3806b38
lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
@@ -347,7 +347,7 @@ bool CPlusPlusNameParser::ConsumeOperator() {
347
// If we find ( or < then this is indeed operator<< no need for fix.
348
if (n_token.getKind() != tok::l_paren && n_token.getKind() != tok::less) {
349
clang::Token tmp_tok;
350
-
+ tmp_tok.startToken();
351
tmp_tok.setLength(1);
352
tmp_tok.setLocation(token.getLocation().getLocWithOffset(1));
353
tmp_tok.setKind(tok::less);
0 commit comments