| 40 | { |
| 41 | public: |
| 42 | FrameItem() = default; |
| 43 | |
| 44 | FrameItem(const DebugThread& thread, FrameItem* parentItem = nullptr) : |
| 45 | m_isFrozen(thread.m_isFrozen), m_tid(thread.m_tid), m_threadPc(thread.m_rip), m_parentItem(parentItem) |
nothing calls this directly
no outgoing calls
no test coverage detected