This revision was automatically updated to reflect the committed changes. Closed by commit rG37eb15ad7ab2: [lldb] Devirtualize IOHandler::{IsActive,SetIsDone,GetIsDone} (NFC) (authored by JDevlieghere). Herald added a project: LLDB.
Changed prior to commit: https://reviews.llvm.org/D120766?vs=412216&id=412568#toc Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D120766/new/ 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() { return m_active && !m_done; } + bool IsActive() { return m_active && !m_done; } - virtual void SetIsDone(bool b) { m_done = b; } + void SetIsDone(bool b) { m_done = b; } - virtual bool GetIsDone() { return m_done; } + bool GetIsDone() { return m_done; } 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() { return m_active && !m_done; } + bool IsActive() { return m_active && !m_done; } - virtual void SetIsDone(bool b) { m_done = b; } + void SetIsDone(bool b) { m_done = b; } - virtual bool GetIsDone() { return m_done; } + bool GetIsDone() { return m_done; } 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