[llvm-pdbdump] Remove oddly placed parens that MSVC doesn't like
[oota-llvm.git] / tools / llvm-pdbdump / llvm-pdbdump.cpp
index 7af8c5fe352f8223c36452ee859bdc862faa3c67..5ef263d20816a1194c54086f8ed3d12c8838b61c 100644 (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);