summaryrefslogtreecommitdiff
path: root/source/Plugins/Process/Utility/HistoryUnwind.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/Process/Utility/HistoryUnwind.h')
-rw-r--r--source/Plugins/Process/Utility/HistoryUnwind.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/Plugins/Process/Utility/HistoryUnwind.h b/source/Plugins/Process/Utility/HistoryUnwind.h
index 0661b80286087..733f93e1ff87e 100644
--- a/source/Plugins/Process/Utility/HistoryUnwind.h
+++ b/source/Plugins/Process/Utility/HistoryUnwind.h
@@ -21,7 +21,7 @@ namespace lldb_private {
class HistoryUnwind : public lldb_private::Unwind
{
public:
- HistoryUnwind (Thread &thread, std::vector<lldb::addr_t> pcs, uint32_t stop_id, bool stop_id_is_valid);
+ HistoryUnwind (Thread &thread, std::vector<lldb::addr_t> pcs, bool stop_id_is_valid);
virtual ~HistoryUnwind ();
@@ -42,7 +42,6 @@ protected:
private:
std::vector<lldb::addr_t> m_pcs;
- uint32_t m_stop_id;
bool m_stop_id_is_valid;
};