diff options
| author | Pavel Labath <labath@google.com> | 2017-03-15 10:02:20 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-03-15 10:02:20 +0000 |
| commit | c17966280709cfd7e5171f16e1de46187bcf7e2c (patch) | |
| tree | 8325e2735b117533a407a0dad97c4f5e33591b35 | |
| parent | 8793554185b3ffe0c19ccf7003914c621cecc872 (diff) | |
| download | bcm5719-llvm-c17966280709cfd7e5171f16e1de46187bcf7e2c.tar.gz bcm5719-llvm-c17966280709cfd7e5171f16e1de46187bcf7e2c.zip | |
Fix windows&darwin builds broken by r297812
llvm-svn: 297819
| -rw-r--r-- | lldb/include/lldb/Utility/Log.h | 1 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp | 1 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/lldb/include/lldb/Utility/Log.h b/lldb/include/lldb/Utility/Log.h index 0699123420e..e74c2e76aee 100644 --- a/lldb/include/lldb/Utility/Log.h +++ b/lldb/include/lldb/Utility/Log.h @@ -13,6 +13,7 @@ // Project includes #include "lldb/Utility/Flags.h" #include "lldb/Utility/Logging.h" +#include "lldb/lldb-defines.h" // Other libraries and framework includes #include "llvm/ADT/ArrayRef.h" diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp index e999a26f9e5..ffab3e5e23c 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp @@ -9,7 +9,6 @@ #include "ProcessKDPLog.h" -using namespace lldb; using namespace lldb_private; static constexpr Log::Category g_categories[] = { diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp b/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp index 0efe8be261d..386e9a5816c 100644 --- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp @@ -9,7 +9,6 @@ #include "ProcessWindowsLog.h" -using namespace lldb; using namespace lldb_private; static constexpr Log::Category g_categories[] = { |

