forked from OSchip/llvm-project
Convert an unsigned to Twine instead of using utostr since we're already building a Twine. NFC
llvm-svn: 259309
This commit is contained in:
parent
2ed5369424
commit
fdfdfbe3da
|
@ -180,7 +180,7 @@ std::string clang::GetIssueString(const SourceManager &SM,
|
|||
|
||||
return (llvm::Twine(CheckerName) + Delimiter +
|
||||
GetEnclosingDeclContextSignature(D) + Delimiter +
|
||||
llvm::utostr(IssueLoc.getExpansionColumnNumber()) + Delimiter +
|
||||
Twine(IssueLoc.getExpansionColumnNumber()) + Delimiter +
|
||||
NormalizeLine(SM, IssueLoc, LangOpts) + Delimiter + BugType)
|
||||
.str();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue