... in the hopes of teaching the bots the gift of silence ;)
For quick reference: https://reviews.llvm.org/rL314747
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314753
91177308-0d34-0410-b5e6-
96231b3b80d8
bool TokenLexer::pasteTokens(Token &LHSTok, ArrayRef<Token> TokenStream,
unsigned int &CurIdx) {
assert(CurIdx > 0 && "## can not be the first token within tokens");
- assert(TokenStream[CurIdx].is(tok::hashhash) ||
+ assert((TokenStream[CurIdx].is(tok::hashhash) ||
(PP.getLangOpts().MSVCCompat &&
- isWideStringLiteralFromMacro(LHSTok, TokenStream[CurIdx])) &&
+ isWideStringLiteralFromMacro(LHSTok, TokenStream[CurIdx]))) &&
"Token at this Index must be ## or part of the MSVC 'L "
"#macro-arg' pasting pair");