[Lldb-commits] [lldb] r219340 - Fix compile error on posix.

Zachary Turner zturner at google.com
Wed Oct 8 13:59:55 PDT 2014


Author: zturner
Date: Wed Oct  8 15:59:55 2014
New Revision: 219340

URL: http://llvm.org/viewvc/llvm-project?rev=219340&view=rev
Log:
Fix compile error on posix.

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

Modified: lldb/trunk/include/lldb/Host/Pipe.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/Pipe.h?rev=219340&r1=219339&r2=219340&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/Pipe.h (original)
+++ lldb/trunk/include/lldb/Host/Pipe.h Wed Oct  8 15:59:55 2014
@@ -13,7 +13,7 @@
 #if defined(_WIN32)
 #include "lldb/Host/windows/PipeWindows.h"
 #else
-#include "lldb/Host/windows/PipePosix.h"
+#include "lldb/Host/posix/PipePosix.h"
 #endif
 
 #endif // liblldb_Host_Pipe_h_





More information about the lldb-commits mailing list