| 11 | namespace test_cpp_conduit { |
| 12 | |
| 13 | PYBIND11_MODULE(exo_planet_pybind11, m) { |
| 14 | wrap_traveler(m); |
| 15 | m.def("wrap_very_lonely_traveler", [m]() { wrap_very_lonely_traveler(m); }); |
| 16 | } |
| 17 | |
| 18 | } // namespace test_cpp_conduit |
| 19 | } // namespace pybind11_tests |
nothing calls this directly
no test coverage detected