mstorsjo created this revision.
mstorsjo added reviewers: asmith, labath, hhb.
Herald added a subscriber: JDevlieghere.
Herald added a project: LLDB.

This fixes build errors like these:

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


Repository:
  rLLDB LLDB

https://reviews.llvm.org/D67856

Files:
  lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h


Index: lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
===================================================================
--- lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
+++ lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
@@ -19,7 +19,7 @@
 
 class NativeRegisterContextWindows : public NativeRegisterContextRegisterInfo {
 public:
-  NativeRegisterContextWindows::NativeRegisterContextWindows(
+  NativeRegisterContextWindows(
       NativeThreadProtocol &native_thread,
       RegisterInfoInterface *reg_info_interface_p);
 


Index: lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
===================================================================
--- lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
+++ lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h
@@ -19,7 +19,7 @@
 
 class NativeRegisterContextWindows : public NativeRegisterContextRegisterInfo {
 public:
-  NativeRegisterContextWindows::NativeRegisterContextWindows(
+  NativeRegisterContextWindows(
       NativeThreadProtocol &native_thread,
       RegisterInfoInterface *reg_info_interface_p);
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to