mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 11:39:35 +00:00
Fix Mac OS X build issue introduced by incorrect using statements
llvm-svn: 181739
This commit is contained in:
parent
bb2a2c865f
commit
ca9409dd55
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user