serge-sans-paille added a comment.

LGTM



================
Comment at: lldb/source/Host/common/NativeProcessProtocol.cpp:652
 
   auto data =
+      llvm::MutableArrayRef(static_cast<uint8_t *>(buf), bytes_read);
----------------
random nit: This could be rewritten as

```
llvm::MutableArrayRef data(static_cast<uint8_t *>(buf), bytes_read);
```

now


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141814

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

Reply via email to