diff options
author | Jim Ingham <jingham@apple.com> | 2014-04-02 22:53:21 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-04-02 22:53:21 +0000 |
commit | 46d005dbc4f4a55d3cf830abcd7bd10c6a3803f8 (patch) | |
tree | 41d07d7d301cf6c5a11901ec5f325786de632c86 /lldb/source/Host | |
parent | af9129468e4ac0ea5b2f17564b27a20485ba9484 (diff) | |
download | bcm5719-llvm-46d005dbc4f4a55d3cf830abcd7bd10c6a3803f8.tar.gz bcm5719-llvm-46d005dbc4f4a55d3cf830abcd7bd10c6a3803f8.zip |
Workaround for collision between enum members in LLVM's MachO.h and system headers
on Mac OS X (in particular mach/machine.h).
<rdar://problem/16494607>
llvm-svn: 205480
Diffstat (limited to 'lldb/source/Host')
-rw-r--r-- | lldb/source/Host/macosx/Symbols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/Symbols.cpp b/lldb/source/Host/macosx/Symbols.cpp index f7f74f34c1d..39f326ad709 100644 --- a/lldb/source/Host/macosx/Symbols.cpp +++ b/lldb/source/Host/macosx/Symbols.cpp @@ -12,7 +12,7 @@ // C Includes #include <dirent.h> #include <pwd.h> -#include "llvm/Support/MachO.h" +#include "lldb/Utility/SafeMachO.h" // C++ Includes // Other libraries and framework includes |