[Lldb-commits] [PATCH] D11135: Avoid dependency on uuid.h in MacOSXDYLD

Pavel Labath labath at google.com
Mon Jul 13 05:27:48 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL242022: Avoid dependency on uuid.h in MacOSXDYLD (authored by labath).

Changed prior to commit:
  http://reviews.llvm.org/D11135?vs=29543&id=29550#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11135

Files:
  lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp

Index: lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
===================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
+++ lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
@@ -7,8 +7,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include <uuid/uuid.h>
-
 #include "lldb/Breakpoint/StoppointCallbackContext.h"
 #include "lldb/Core/DataBuffer.h"
 #include "lldb/Core/DataBufferHeap.h"
@@ -41,6 +39,8 @@
 
 #ifndef __APPLE__
 #include "Utility/UuidCompatibility.h"
+#else
+#include <uuid/uuid.h>
 #endif
 
 using namespace lldb;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11135.29550.patch
Type: text/x-patch
Size: 725 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150713/c18ca17e/attachment.bin>


More information about the lldb-commits mailing list