aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2018-05-24 13:12:07 +0000
committerPavel Labath <labath@google.com>2018-05-24 13:12:07 +0000
commit5dd5833bd1930c8e0173a87af45641d54798d7cf (patch)
treea7276d9709a8c88d70dfc44c63012a50df9287ab
parentfa3fa5b90e9a6b349f55e74a66597078353702b0 (diff)
downloadllvm-5dd5833bd1930c8e0173a87af45641d54798d7cf.zip
llvm-5dd5833bd1930c8e0173a87af45641d54798d7cf.tar.gz
llvm-5dd5833bd1930c8e0173a87af45641d54798d7cf.tar.bz2
Fix windows/mac builds broken by r333182.
I should've known that something was wrong when only one of my plugins was prefixed by the lldb_private namespace. llvm-svn: 333183
-rw-r--r--lldb/tools/lldb-server/SystemInitializerLLGS.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/lldb-server/SystemInitializerLLGS.cpp b/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
index 3240c9e..aeaf382 100644
--- a/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
+++ b/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
@@ -11,10 +11,10 @@
#if defined(__APPLE__)
#include "Plugins/ObjectFile/Mach-O/ObjectFileMachO.h"
-using HostObjectFile = lldb_private::ObjectFileMachO;
+using HostObjectFile = ObjectFileMachO;
#elif defined(_WIN32)
#include "Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h"
-using HostObjectFile = lldb_private::ObjectFilePECOFF;
+using HostObjectFile = ObjectFilePECOFF;
#else
#include "Plugins/ObjectFile/ELF/ObjectFileELF.h"
using HostObjectFile = ObjectFileELF;