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; }
 


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; }
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
  • [Lldb-commits] [PATCH] ... Jonas Devlieghere via Phabricator via lldb-commits

Reply via email to