LibThreading: Remove redundant method

This commit is contained in:
Ben Wiederhake 2021-11-01 23:39:10 +01:00 committed by Andreas Kling
parent 17d95bc1db
commit 59619572d6
Notes: sideshowbarker 2024-07-18 01:37:37 +09:00
6 changed files with 6 additions and 13 deletions

View file

@ -113,7 +113,7 @@ private:
void ThreadStackWidget::refresh()
{
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::create(
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::construct(
[pid = m_pid, tid = m_tid](auto&) {
return Symbolication::symbolicate_thread(pid, tid, Symbolication::IncludeSourcePosition::No);
},