| 1410 | } |
| 1411 | |
| 1412 | CommandRecorder::CommandRecorder(CommandRecorder && other) : internal{} |
| 1413 | { |
| 1414 | std::swap(this->internal, other.internal); |
| 1415 | } |
| 1416 | |
| 1417 | auto CommandRecorder::operator=(CommandRecorder && other) -> CommandRecorder & |
| 1418 | { |
nothing calls this directly
no outgoing calls
no test coverage detected