| 75 | } |
| 76 | |
| 77 | inline DynamicLibrary::DynamicLibrary (DynamicLibrary&& other) : handle (other.handle) |
| 78 | { |
| 79 | other.handle = nullptr; |
| 80 | } |
| 81 | |
| 82 | inline DynamicLibrary& DynamicLibrary::operator= (DynamicLibrary&& other) |
| 83 | { |
nothing calls this directly
no test coverage detected