[Lldb-commits] [PATCH] D120766: [lldb] Devirtualize IOHandler::{IsActive, SetIsDone, GetIsDone} (NFC)
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 1 13:05:01 PST 2022
JDevlieghere created this revision.
JDevlieghere added reviewers: clayborg, jingham, labath, mib.
Herald added a project: All.
JDevlieghere requested review of this revision.
There are no implementations overriding these methods.
https://reviews.llvm.org/D120766
Files:
lldb/include/lldb/Core/IOHandler.h
Index: lldb/include/lldb/Core/IOHandler.h
===================================================================
--- lldb/include/lldb/Core/IOHandler.h
+++ lldb/include/lldb/Core/IOHandler.h
@@ -85,11 +85,11 @@
virtual void GotEOF() = 0;
- virtual bool IsActive();
+ bool IsActive();
- virtual void SetIsDone(bool b);
+ void SetIsDone(bool b);
- virtual bool GetIsDone();
+ bool GetIsDone();
Type GetType() const { return m_type; }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D120766.412216.patch
Type: text/x-patch
Size: 453 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220301/c20ee8f1/attachment.bin>
More information about the lldb-commits
mailing list