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

Method NotCopyable

01.24-optional0/main.cpp:41–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39// #A A struct with delete copy operations
40struct NotCopyable {
41 NotCopyable(const NotCopyable&) = delete;
42 NotCopyable& operator=(const NotCopyable&) = delete;
43};
44

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected