Searched defs:MoveOrCopyInt (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_copy_move.cpp49 class MoveOrCopyInt { class
51 MoveOrCopyInt() { print_default_created(this); } function in class:MoveOrCopyInt
52 MoveOrCopyInt(int v) : value{std::move(v)} { print_created(this, value); } function in class:MoveOrCopyInt
53 MoveOrCopyInt(MoveOrCopyInt &&m) { print_move_created(this, m.value); std::swap(value, m.value); } function in class:MoveOrCopyInt
55 MoveOrCopyInt(const MoveOrCopyInt &c) { print_copy_created(this, c.value); value = c.value; } function in class:MoveOrCopyInt
[all...]

Completed in 4 milliseconds