| 38 | struct InvalidCopiedMemory : public RemoteMemCopyError |
| 39 | { |
| 40 | const char* what() const noexcept override |
| 41 | { |
| 42 | return "Mismatched amount of memory received!"; |
| 43 | } |
| 44 | }; |
| 45 | |
| 46 | class VirtualMap |
nothing calls this directly
no outgoing calls
no test coverage detected