diff options
author | Pavel Labath <labath@google.com> | 2018-05-24 13:12:07 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-05-24 13:12:07 +0000 |
commit | 5dd5833bd1930c8e0173a87af45641d54798d7cf (patch) | |
tree | a7276d9709a8c88d70dfc44c63012a50df9287ab | |
parent | fa3fa5b90e9a6b349f55e74a66597078353702b0 (diff) | |
download | llvm-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.cpp | 4 |
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; |