| 11 | //********************************************************************************************* |
| 12 | |
| 13 | FramePassTimerBlock::FramePassTimerBlock( FramePassTimer & timer ) |
| 14 | : m_timer{ &timer } |
| 15 | { |
| 16 | } |
| 17 | |
| 18 | FramePassTimerBlock::FramePassTimerBlock( FramePassTimerBlock && block )noexcept |
| 19 | : m_timer{ block.m_timer } |
nothing calls this directly
no outgoing calls
no test coverage detected