[Lldb-commits] [lldb] r233680 - Fix Windows build after r233679

Tamas Berghammer tberghammer at google.com
Tue Mar 31 03:11:04 PDT 2015


Author: tberghammer
Date: Tue Mar 31 05:11:04 2015
New Revision: 233680

URL: http://llvm.org/viewvc/llvm-project?rev=233680&view=rev
Log:
Fix Windows build after r233679

Modified:
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp

Modified: lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp?rev=233680&r1=233679&r2=233680&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp Tue Mar 31 05:11:04 2015
@@ -45,7 +45,6 @@
 using namespace lldb;
 using namespace lldb_private;
 using namespace lldb_private::platform_linux;
-using namespace lldb_private::process_linux;
 
 static uint32_t g_initialize_count = 0;
 
@@ -882,7 +881,7 @@ PlatformLinux::LaunchNativeProcess (Proc
         return Error("exe_module_sp could not be resolved for %s", launch_info.GetExecutableFile ().GetPath ().c_str ());
 
     // Launch it for debugging
-    error = NativeProcessLinux::LaunchProcess (
+    error = process_linux::NativeProcessLinux::LaunchProcess (
         exe_module_sp.get (),
         launch_info,
         native_delegate,
@@ -904,6 +903,6 @@ PlatformLinux::AttachNativeProcess (lldb
         return Error("PlatformLinux::%s (): cannot attach to a debug process when not the host", __FUNCTION__);
 
     // Launch it for debugging
-    return NativeProcessLinux::AttachToProcess (pid, native_delegate, process_sp);
+    return process_linux::NativeProcessLinux::AttachToProcess (pid, native_delegate, process_sp);
 #endif
 }





More information about the lldb-commits mailing list