1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

[llvm-pdbdump] Remove oddly placed parens that MSVC doesn't like

llvm-svn: 250385
This commit is contained in:
Benjamin Kramer 2015-10-15 09:32:54 +00:00
parent fef2a04838
commit 79ff9a3d34

View File

@ -361,7 +361,7 @@ static void dumpStructure(MemoryBufferRef M) {
if (BytesLeftToReadInStream == 0)
break;
uint32_t BytesToReadInBlock = (std::min)(
uint32_t BytesToReadInBlock = std::min(
BytesLeftToReadInStream, static_cast<uint32_t>(SB->BlockSize));
auto StreamBlockData =
StringRef(M.getBufferStart() + StreamBlockOffset, BytesToReadInBlock);