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

/gem5/ext/pybind11/tests/
H A Dtest_factory_constructors.cpp43 class TestFactory3 { class
46 TestFactory3() : value("(empty3)") { print_default_created(this); } function in class:TestFactory3
47 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); } function in class:TestFactory3
49 TestFactory3(std::string v) : value(std::move(v)) { print_created(this, value); } function in class:TestFactory3
50 TestFactory3(TestFactory3 &&m) { value = std::move(m.value); print_move_created(this); } function in class:TestFactory3
[all...]

Completed in 5 milliseconds