MCPcopy Create free account
hub / github.com/pybind/pybind11 / NotCopyableNotMovable

Method NotCopyableNotMovable

tests/test_copy_move.cpp:372–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370
371struct NotCopyableNotMovable {
372 NotCopyableNotMovable() = default;
373 NotCopyableNotMovable(NotCopyableNotMovable const &) = delete;
374 NotCopyableNotMovable(NotCopyableNotMovable &&) = delete;
375 NotCopyableNotMovable &operator=(NotCopyableNotMovable const &) = delete;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected