forked from OSchip/llvm-project
[NFC] Fix typo in comment
Reported-by: Marco Cali <marco.cali@arm.com>
This commit is contained in:
parent
1a248233a5
commit
b77b2201dc
|
@ -363,7 +363,7 @@ private:
|
|||
Left->Previous && Left->Previous->is(tok::l_paren)) {
|
||||
// Detect the case where macros are used to generate lambdas or
|
||||
// function bodies, e.g.:
|
||||
// auto my_lambda = MARCO((Type *type, int i) { .. body .. });
|
||||
// auto my_lambda = MACRO((Type *type, int i) { .. body .. });
|
||||
for (FormatToken *Tok = Left; Tok != CurrentToken; Tok = Tok->Next) {
|
||||
if (Tok->is(TT_BinaryOperator) &&
|
||||
Tok->isOneOf(tok::star, tok::amp, tok::ampamp))
|
||||
|
|
Loading…
Reference in New Issue