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 b048b1b commit 322cf74Copy full SHA for 322cf74
clang-tools-extra/include-cleaner/lib/Types.cpp
@@ -47,9 +47,9 @@ llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const SymbolReference &R) {
47
// We can't decode the Location without SourceManager. Its raw representation
48
// isn't completely useless (and distinguishes SymbolReference from Symbol).
49
return OS << R.Target << "@0x"
50
- << llvm::utohexstr(R.RefLocation.getRawEncoding(),
51
- /*Width=*/CHAR_BIT *
52
- sizeof(SourceLocation::UIntTy));
+ << llvm::utohexstr(
+ R.RefLocation.getRawEncoding(), /*LowerCase=*/false,
+ /*Width=*/CHAR_BIT * sizeof(SourceLocation::UIntTy));
53
}
54
55
} // namespace clang::include_cleaner
0 commit comments