diff options
author | Martin Storsjo <martin@martin.st> | 2019-09-21 19:09:43 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2019-09-21 19:09:43 +0000 |
commit | f4deacf995c73045a2172f35cbaf289fa97e7abc (patch) | |
tree | 0d1366a9ec85d9e6307677b12afe4c66aa3bcc10 /lldb/source/Plugins/Process/Windows/Common | |
parent | 1bfdab52a76bf667aa345b5026f1d524ed6d4ac8 (diff) | |
download | bcm5719-llvm-f4deacf995c73045a2172f35cbaf289fa97e7abc.tar.gz bcm5719-llvm-f4deacf995c73045a2172f35cbaf289fa97e7abc.zip |
[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
llvm-svn: 372482
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h b/lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h index ca3badd5cc0..841b8547f3e 100644 --- a/lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h +++ b/lldb/source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.h @@ -19,7 +19,7 @@ class NativeThreadWindows; class NativeRegisterContextWindows : public NativeRegisterContextRegisterInfo { public: - NativeRegisterContextWindows::NativeRegisterContextWindows( + NativeRegisterContextWindows( NativeThreadProtocol &native_thread, RegisterInfoInterface *reg_info_interface_p); |