From ca9409dd558b7f8fe541a801da1130644d35b367 Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Mon, 13 May 2013 21:52:06 +0000 Subject: [PATCH] Fix Mac OS X build issue introduced by incorrect using statements llvm-svn: 181739 --- .../Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp index b128d9d804e4..964732e4ecfd 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp @@ -9,9 +9,6 @@ #include "PlatformDarwinKernel.h" -using namespace lldb; -using namespace lldb_private; - #if defined (__APPLE__) // This Plugin uses the Mac-specific source/Host/macosx/cfcpp utilities @@ -40,6 +37,9 @@ using namespace lldb_private; #include "Host/macosx/cfcpp/CFCBundle.h" +using namespace lldb; +using namespace lldb_private; + //------------------------------------------------------------------ // Static Variables //------------------------------------------------------------------ @@ -666,7 +666,7 @@ PlatformDarwinKernel::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &a lldb_private::ConstString PlatformDarwinKernel::GetPluginNameStatic () { - static ConstString g_name("darwin-kernel"); + static lldb_private::ConstString g_name("darwin-kernel"); return g_name; }