commit | 0a70a845342cd75f40b7de3f0e7e70d973f5aecb | [log] [tgz] |
---|---|---|
author | Todd Fiala <todd.fiala@gmail.com> | Wed May 28 16:43:26 2014 +0000 |
committer | Todd Fiala <todd.fiala@gmail.com> | Wed May 28 16:43:26 2014 +0000 |
tree | 10cb95a48b345373110a7e2308b4b95716c914d1 | |
parent | 2c77fe59d9c1ab15b2032db2db932ce54774b3a9 [diff] [blame] |
Fix Windows warnings. This fixes a number of trivial warnings in the Windows build. This is part of a larger effort to make the Windows build warning-free. See http://reviews.llvm.org/D3914 for more details. Change by Zachary Turner llvm-svn: 209749
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 4c2d369..ab4ed4c 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
@@ -38,7 +38,7 @@ using namespace lldb; using namespace lldb_private; -#ifdef LLDB_DISABLE_POSIX +#if defined(LLDB_DISABLE_POSIX) && !defined(SIGSTOP) #define SIGSTOP 17 #endif