mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Remove superfluous call to std::to_string that's breaking the cygwin build.
llvm-svn: 258928
This commit is contained in:
parent
f14c1e99a1
commit
60da2d6edb
@ -2286,8 +2286,7 @@ template <class ELFT> void ELFDumper<ELFT>::printGroupSections() {
|
||||
while (Member < Data.size()) {
|
||||
auto Sec = errorOrDefault(Obj->getSection(Data[Member]));
|
||||
const StringRef Name = errorOrDefault(Obj->getSectionName(Sec));
|
||||
W.startLine() << Name << " (" << std::to_string(Data[Member++])
|
||||
<< ")\n";
|
||||
W.startLine() << Name << " (" << Data[Member++] << ")\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user