[Lldb-commits] [lldb] r297819 - Fix windows&darwin builds broken by r297812
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 15 03:02:20 PDT 2017
Author: labath
Date: Wed Mar 15 05:02:20 2017
New Revision: 297819
URL: http://llvm.org/viewvc/llvm-project?rev=297819&view=rev
Log:
Fix windows&darwin builds broken by r297812
Modified:
lldb/trunk/include/lldb/Utility/Log.h
lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp
Modified: lldb/trunk/include/lldb/Utility/Log.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/Log.h?rev=297819&r1=297818&r2=297819&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/Log.h (original)
+++ lldb/trunk/include/lldb/Utility/Log.h Wed Mar 15 05:02:20 2017
@@ -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"
Modified: lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp?rev=297819&r1=297818&r2=297819&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp (original)
+++ lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp Wed Mar 15 05:02:20 2017
@@ -9,7 +9,6 @@
#include "ProcessKDPLog.h"
-using namespace lldb;
using namespace lldb_private;
static constexpr Log::Category g_categories[] = {
Modified: lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp?rev=297819&r1=297818&r2=297819&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp Wed Mar 15 05:02:20 2017
@@ -9,7 +9,6 @@
#include "ProcessWindowsLog.h"
-using namespace lldb;
using namespace lldb_private;
static constexpr Log::Category g_categories[] = {
More information about the lldb-commits
mailing list