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:
Craig Topper 2016-01-31 00:20:24 +00:00
parent 2ed5369424
commit fdfdfbe3da
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}