[Lldb-commits] [lldb] r372482 - [LLDB] Fix compilation for MinGW, remove redundant class name on inline member

Martin Storsjo via lldb-commits lldb-commits at lists.llvm.org
Sat Sep 21 12:09:44 PDT 2019


Author: mstorsjo
Date: Sat Sep 21 12:09:43 2019
New Revision: 372482

URL: http://llvm.org/viewvc/llvm-project?rev=372482&view=rev
Log:
[LLDB] Fix compilation for MinGW, remove redundant class name on inline member

This fixes build errors like these:

NativeRegisterContextWindows.h:22:33: error: extra qualification on member 'NativeRegisterContextWindows'
  NativeRegisterContextWindows::NativeRegisterContextWindows(
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^

Differential Revision: https://reviews.llvm.org/D67856

Modified:
    lldb/trunk/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h

Modified: lldb/trunk/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h?rev=372482&r1=372481&r2=372482&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h (original)
+++ lldb/trunk/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h Sat Sep 21 12:09:43 2019
@@ -19,7 +19,7 @@ class NativeThreadWindows;
 
 class NativeRegisterContextWindows : public NativeRegisterContextRegisterInfo {
 public:
-  NativeRegisterContextWindows::NativeRegisterContextWindows(
+  NativeRegisterContextWindows(
       NativeThreadProtocol &native_thread,
       RegisterInfoInterface *reg_info_interface_p);
 




More information about the lldb-commits mailing list