forked from OSchip/llvm-project
Remove unused class variable and update all callers/users.
llvm-svn: 217419
This commit is contained in:
parent
34b122fa27
commit
f0e65fc501
|
@ -39,7 +39,7 @@ HistoryThread::HistoryThread (lldb_private::Process &process,
|
|||
m_originating_unique_thread_id (tid),
|
||||
m_queue_id (LLDB_INVALID_QUEUE_ID)
|
||||
{
|
||||
m_unwinder_ap.reset (new HistoryUnwind (*this, pcs, stop_id, stop_id_is_valid));
|
||||
m_unwinder_ap.reset (new HistoryUnwind (*this, pcs, stop_id_is_valid));
|
||||
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
|
||||
if (log)
|
||||
log->Printf ("%p HistoryThread::HistoryThread",
|
||||
|
|
|
@ -24,11 +24,9 @@ using namespace lldb_private;
|
|||
|
||||
HistoryUnwind::HistoryUnwind (Thread &thread,
|
||||
std::vector<lldb::addr_t> pcs,
|
||||
uint32_t stop_id,
|
||||
bool stop_id_is_valid) :
|
||||
Unwind (thread),
|
||||
m_pcs (pcs),
|
||||
m_stop_id (stop_id),
|
||||
m_stop_id_is_valid (stop_id_is_valid)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue