diff options
| author | Daniel Malea <daniel.malea@intel.com> | 2013-05-13 21:52:06 +0000 |
|---|---|---|
| committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-13 21:52:06 +0000 |
| commit | ca9409dd558b7f8fe541a801da1130644d35b367 (patch) | |
| tree | 1ba38cbb191fc7de74ec6761f1d3c78ee2597e91 | |
| parent | bb2a2c865f8df7146228264e4cba043cdb4f1ec4 (diff) | |
| download | bcm5719-llvm-ca9409dd558b7f8fe541a801da1130644d35b367.tar.gz bcm5719-llvm-ca9409dd558b7f8fe541a801da1130644d35b367.zip | |
Fix Mac OS X build issue introduced by incorrect using statements
llvm-svn: 181739
| -rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp index b128d9d804e..964732e4ecf 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; } |

