| 18 | |
| 19 | namespace safetyhook { |
| 20 | Allocation::Allocation(Allocation&& other) noexcept { |
| 21 | *this = std::move(other); |
| 22 | } |
| 23 | |
| 24 | Allocation& Allocation::operator=(Allocation&& other) noexcept { |
| 25 | if (this != &other) { |
nothing calls this directly
no outgoing calls
no test coverage detected