[Lldb-commits] [PATCH] D67856: [LLDB] Fix compilation for MinGW, remove redundant class name on inline member
Martin Storsjö via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 20 13:09:58 PDT 2019
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);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67856.221098.patch
Type: text/x-patch
Size: 610 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190920/51bc115e/attachment.bin>
More information about the lldb-commits
mailing list