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

Class NotCopyable

01.28-optional3/main.cpp:43–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41};
42
43struct NotCopyable {
44 NotCopyable(const NotCopyable&) = delete;
45 NotCopyable& operator=(const NotCopyable&) = delete;
46};
47
48struct Not_TriviallyDestructible {
49 ~Not_TriviallyDestructible() {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected