diff options
author | Charles Davis <cdavis5x@gmail.com> | 2013-08-27 06:13:56 +0000 |
---|---|---|
committer | Charles Davis <cdavis5x@gmail.com> | 2013-08-27 06:13:56 +0000 |
commit | 322fc8477c23b3c7fcd89c01d417d26ab3ce6866 (patch) | |
tree | b2497bb8143b753aa0dd2bd90ffc7aac14b5c495 /lldb/source/Core/Error.cpp | |
parent | 1827bd8a6c943e23b033b79d812e726667eb472f (diff) | |
download | bcm5719-llvm-322fc8477c23b3c7fcd89c01d417d26ab3ce6866.tar.gz bcm5719-llvm-322fc8477c23b3c7fcd89c01d417d26ab3ce6866.zip |
Core: Fix non-Darwin build.
More fallout from my mass-Mach-O-renaming.
llvm-svn: 189323
Diffstat (limited to 'lldb/source/Core/Error.cpp')
-rw-r--r-- | lldb/source/Core/Error.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Core/Error.cpp b/lldb/source/Core/Error.cpp index 9556c55644b..bca30be6813 100644 --- a/lldb/source/Core/Error.cpp +++ b/lldb/source/Core/Error.cpp @@ -8,7 +8,9 @@ //===----------------------------------------------------------------------===// // C Includes +#ifdef __APPLE__ #include <mach/mach.h> +#endif // C++ Includes // Other libraries and framework includes |