[Lldb-commits] [lldb] r348332 - gdb-remote: use elaborated type specifier for `Module`

Saleem Abdulrasool via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 4 20:04:14 PST 2018


Author: compnerd
Date: Tue Dec  4 20:04:14 2018
New Revision: 348332

URL: http://llvm.org/viewvc/llvm-project?rev=348332&view=rev
Log:
gdb-remote: use elaborated type specifier for `Module`

When building with MSVC, the type `Module` is ambiguous due to both the
lldb_private and llvm namespaces being used.  Use the elaborated type
instead to resolve the ambiguity.

Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=348332&r1=348331&r2=348332&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Tue Dec  4 20:04:14 2018
@@ -683,7 +683,7 @@ void ProcessGDBRemote::BuildDynamicRegis
   m_register_info.Finalize(GetTarget().GetArchitecture());
 }
 
-Status ProcessGDBRemote::WillLaunch(Module *module) {
+Status ProcessGDBRemote::WillLaunch(lldb_private::Module *module) {
   return WillLaunchOrAttach();
 }
 
@@ -799,7 +799,7 @@ Status ProcessGDBRemote::WillLaunchOrAtt
 //----------------------------------------------------------------------
 // Process Control
 //----------------------------------------------------------------------
-Status ProcessGDBRemote::DoLaunch(Module *exe_module,
+Status ProcessGDBRemote::DoLaunch(lldb_private::Module *exe_module,
                                   ProcessLaunchInfo &launch_info) {
   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
   Status error;




More information about the lldb-commits mailing list