| 10 | namespace sfg { |
| 11 | |
| 12 | Signal::Signal( Signal&& other ) : |
| 13 | m_delegates( std::move( other.m_delegates ) ) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | Signal& Signal::operator=( Signal&& other ) { |
| 18 | m_delegates = std::move( other.m_delegates ); |
nothing calls this directly
no outgoing calls
no test coverage detected