[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
Sun Nov 22 08:43:22 PST 2020


mgorny created this revision.
mgorny added reviewers: emaste, krytarowski, labath.
mgorny requested review of this revision.

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.306923.patch
Type: text/x-patch
Size: 1257 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20201122/576c9aac/attachment.bin>


More information about the lldb-commits mailing list