MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / Allocation

Method Allocation

include/safetyhook/safetyhook.cpp:20–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18
19namespace safetyhook {
20Allocation::Allocation(Allocation&& other) noexcept {
21 *this = std::move(other);
22}
23
24Allocation& Allocation::operator=(Allocation&& other) noexcept {
25 if (this != &other) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected