aaron.ballman added inline comments.

================
Comment at: clang/tools/clang-nvlink-wrapper/ClangNvlinkWrapper.cpp:63
+  ErrorOr<std::unique_ptr<MemoryBuffer>> BufOrErr =
+      MemoryBuffer::getFileOrSTDIN(Filename, -1, false);
+  if (std::error_code EC = BufOrErr.getError())
----------------
The `-1` is odd here -- this argument is a Boolean for whether the buffer is 
text or not, and this introduced a new MSVC warning (`'argument': truncation 
from 'int' to 'bool'`).


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D108291/new/

https://reviews.llvm.org/D108291

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to