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/Core/ArchSpec.cpp | |
| 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/Core/ArchSpec.cpp')
| -rw-r--r-- | lldb/source/Core/ArchSpec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ArchSpec.cpp b/lldb/source/Core/ArchSpec.cpp index b1303462572..f06e1fcba7a 100644 --- a/lldb/source/Core/ArchSpec.cpp +++ b/lldb/source/Core/ArchSpec.cpp @@ -17,7 +17,7 @@ #include "llvm/Support/COFF.h" #include "llvm/Support/ELF.h" #include "llvm/Support/Host.h" -#include "llvm/Support/MachO.h" +#include "lldb/Utility/SafeMachO.h" #include "lldb/Core/RegularExpression.h" #include "lldb/Host/Endian.h" #include "lldb/Host/Host.h" |

