| 8084 | namespace Catch { |
| 8085 | |
| 8086 | Colour::Colour( Code _colourCode ) { use( _colourCode ); } |
| 8087 | Colour::Colour( Colour&& rhs ) noexcept { |
| 8088 | m_moved = rhs.m_moved; |
| 8089 | rhs.m_moved = true; |
nothing calls this directly
no outgoing calls
no test coverage detected