move ctor
| 11 | } |
| 12 | // move ctor |
| 13 | EtlLogger::EtlLogger(EtlLogger&& other) noexcept |
| 14 | { |
| 15 | *this = std::move(other); |
| 16 | } |
| 17 | // move assignment |
| 18 | EtlLogger& EtlLogger::operator=(EtlLogger&& rhs) noexcept |
| 19 | { |
nothing calls this directly
no test coverage detected