[Lldb-commits] [lldb] r301504 - One more attempt to fix the broken bots.

Chris Bieneman via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 26 17:23:41 PDT 2017


Author: cbieneman
Date: Wed Apr 26 19:23:41 2017
New Revision: 301504

URL: http://llvm.org/viewvc/llvm-project?rev=301504&view=rev
Log:
One more attempt to fix the broken bots.

Modified:
    lldb/trunk/source/Host/common/TCPSocket.cpp

Modified: lldb/trunk/source/Host/common/TCPSocket.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/TCPSocket.cpp?rev=301504&r1=301503&r2=301504&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/TCPSocket.cpp (original)
+++ lldb/trunk/source/Host/common/TCPSocket.cpp Wed Apr 26 19:23:41 2017
@@ -32,8 +32,10 @@
 
 #ifdef LLVM_ON_WIN32
 #define CLOSE_SOCKET closesocket
+typedef const char *set_socket_option_arg_type;
 #else
 #define CLOSE_SOCKET ::close
+typedef const void *set_socket_option_arg_type;
 #endif
 
 using namespace lldb;




More information about the lldb-commits mailing list