[Lldb-commits] [PATCH] D91934: [lldb] [Process/FreeBSD] Add missing 'override' kws to POSIXStopInfo
Michał Górny via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 23 00:24:52 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7b7c372e3fca: [lldb] [Process/FreeBSD] Add missing 'override' kws to POSIXStopInfo (authored by mgorny).
Herald added a project: LLDB.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91934/new/
https://reviews.llvm.org/D91934
Files:
lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
Index: lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
===================================================================
--- lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
+++ lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
@@ -34,13 +34,13 @@
~POSIXLimboStopInfo();
- lldb::StopReason GetStopReason() const;
+ lldb::StopReason GetStopReason() const override;
- const char *GetDescription();
+ const char *GetDescription() override;
- bool ShouldStop(lldb_private::Event *event_ptr);
+ bool ShouldStop(lldb_private::Event *event_ptr) override;
- bool ShouldNotify(lldb_private::Event *event_ptr);
+ bool ShouldNotify(lldb_private::Event *event_ptr) override;
};
//===----------------------------------------------------------------------===//
@@ -54,13 +54,13 @@
~POSIXNewThreadStopInfo();
- lldb::StopReason GetStopReason() const;
+ lldb::StopReason GetStopReason() const override;
- const char *GetDescription();
+ const char *GetDescription() override;
- bool ShouldStop(lldb_private::Event *event_ptr);
+ bool ShouldStop(lldb_private::Event *event_ptr) override;
- bool ShouldNotify(lldb_private::Event *event_ptr);
+ bool ShouldNotify(lldb_private::Event *event_ptr) override;
};
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D91934.306963.patch
Type: text/x-patch
Size: 1257 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20201123/cd66ef05/attachment.bin>
More information about the lldb-commits
mailing list