1
0
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:
Benjamin Kramer 2016-01-27 13:22:39 +00:00
parent f14c1e99a1
commit 60da2d6edb

View File

@ -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";
}
}
}