diff options
Diffstat (limited to 'include/lldb/Host/Socket.h')
-rw-r--r-- | include/lldb/Host/Socket.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/lldb/Host/Socket.h b/include/lldb/Host/Socket.h index 6f96bd73e753..c6df5634e24e 100644 --- a/include/lldb/Host/Socket.h +++ b/include/lldb/Host/Socket.h @@ -31,7 +31,7 @@ class StringRef; namespace lldb_private { -#if defined(_MSC_VER) +#if defined(_WIN32) typedef SOCKET NativeSocket; #else typedef int NativeSocket; @@ -122,6 +122,7 @@ protected: SocketProtocol m_protocol; NativeSocket m_socket; bool m_child_processes_inherit; + bool m_should_close_fd; }; } // namespace lldb_private |