[Lldb-commits] [lldb] r301581 - Fixing Windows bot

Chris Bieneman via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 27 12:56:54 PDT 2017


Author: cbieneman
Date: Thu Apr 27 14:56:54 2017
New Revision: 301581

URL: http://llvm.org/viewvc/llvm-project?rev=301581&view=rev
Log:
Fixing Windows bot

URL:
http://lab.llvm.org:8011/builders/lldb-x86-windows-msvc2015/builds/8700

Modified:
    lldb/trunk/include/lldb/Host/PosixApi.h

Modified: lldb/trunk/include/lldb/Host/PosixApi.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/PosixApi.h?rev=301581&r1=301580&r2=301581&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/PosixApi.h (original)
+++ lldb/trunk/include/lldb/Host/PosixApi.h Thu Apr 27 14:56:54 2017
@@ -14,7 +14,7 @@
 // to provide a minimum level of compatibility across all platforms to rely
 // on various posix api functionality.
 
-#if defined(LLVM_ON_WIN32)
+#if defined(_WIN32)
 #include "lldb/Host/windows/PosixApi.h"
 #endif
 




More information about the lldb-commits mailing list