diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/HistoryUnwind.h')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/HistoryUnwind.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Utility/HistoryUnwind.h b/lldb/source/Plugins/Process/Utility/HistoryUnwind.h index 543f913e8fd..6c4522e6b35 100644 --- a/lldb/source/Plugins/Process/Utility/HistoryUnwind.h +++ b/lldb/source/Plugins/Process/Utility/HistoryUnwind.h @@ -18,8 +18,7 @@ namespace lldb_private { class HistoryUnwind : public lldb_private::Unwind { public: - HistoryUnwind(Thread &thread, std::vector<lldb::addr_t> pcs, - bool stop_id_is_valid); + HistoryUnwind(Thread &thread, std::vector<lldb::addr_t> pcs); ~HistoryUnwind() override; @@ -35,7 +34,6 @@ protected: private: std::vector<lldb::addr_t> m_pcs; - bool m_stop_id_is_valid; }; } // namespace lldb_private |