MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / Resources

Method Resources

11.08-notCopyable0/main.cpp:11–11  ·  view source on GitHub ↗

#A Ensure not copyable, but move works

Source from the content-addressed store, hash-verified

9
10 // #A Ensure not copyable, but move works
11 Resources() = default;
12 Resources(const Resources&) = delete;
13 Resources(Resources&&) = default;
14};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected