[Lldb-commits] [PATCH] D56234: [lldb-server] Add unnamed pipe support to PipeWindows

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 10 00:53:13 PST 2019


labath added a comment.

Looks very nice. Thanks.



================
Comment at: include/lldb/Host/windows/PipeWindows.h:52
 
+  lldb::pipe_t GetReadPipe() const { return lldb::pipe_t(m_read); }
+  lldb::pipe_t GetWritePipe() const { return lldb::pipe_t(m_write); }
----------------
missing  `override` (that will likely be flagged as a warning by clang)?


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

https://reviews.llvm.org/D56234





More information about the lldb-commits mailing list