Fix Mac OS X build issue introduced by incorrect using statements

llvm-svn: 181739
This commit is contained in:
Daniel Malea 2013-05-13 21:52:06 +00:00
parent bb2a2c865f
commit ca9409dd55

View File

@ -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;
}