commit | 6eff101926830481b638e451c58e82275509d224 | [log] [tgz] |
---|---|---|
author | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | Wed Mar 12 10:45:23 2014 +0000 |
committer | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | Wed Mar 12 10:45:23 2014 +0000 |
tree | 94c25c23b1352ecb3a4dcd7d4836c4df7cbabba8 | |
parent | bdb515916c1f9787b7e9d8a56468bfe08b975098 [diff] [blame] |
Replace some _MSC_VER with _WIN32. This allows to use some code for mingw which was previously only used for MSVC. llvm-svn: 203651
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index a33f27e..ffc948d 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
@@ -702,7 +702,7 @@ if (::mktemp (named_pipe_path)) { -#if defined(_MSC_VER) +#if defined(_WIN32) if ( false ) #else if (::mkfifo(named_pipe_path, 0600) == 0)