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

Method MoveIssue1

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

Source from the content-addressed store, hash-verified

276 struct MoveIssue1 {
277 int v;
278 explicit MoveIssue1(int v) : v{v} {}
279 MoveIssue1(const MoveIssue1 &c) = default;
280 MoveIssue1(MoveIssue1 &&) = delete;
281 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected