Skip to content

Commit 9995c7d

Browse files
zahiraamsys-ce-bb
authored andcommitted
Fix failure in buildbot (#86661)
Sanitizer failure in https://lab.llvm.org/buildbot/#/builders/19/builds/25788
1 parent 4493d9f commit 9995c7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/AST/TypePrinter.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2322,10 +2322,10 @@ printTo(raw_ostream &OS, ArrayRef<TA> Args, const PrintingPolicy &Policy,
23222322
} else {
23232323
if (!FirstArg)
23242324
OS << Comma;
2325-
// Tries to print the argument with location info if exists.
2326-
printArgument(Arg, Policy, ArgOS,
2327-
TemplateParameterList::shouldIncludeTypeForArgument(
2328-
Policy, TPL, ParmIndex));
2325+
// Tries to print the argument with location info if exists.
2326+
printArgument(Arg, Policy, ArgOS,
2327+
TemplateParameterList::shouldIncludeTypeForArgument(
2328+
Policy, TPL, ParmIndex));
23292329
}
23302330
StringRef ArgString = ArgOS.str();
23312331

0 commit comments

Comments
 (0)