Home
last modified time | relevance | path

Searched refs:shared_ptr_with_addressof_operator (Results 1 – 1 of 1) sorted by relevance

/external/python/pybind11/tests/
Dtest_smart_ptr.cpp63 class shared_ptr_with_addressof_operator { class
66 shared_ptr_with_addressof_operator( ) = default;
67 shared_ptr_with_addressof_operator(T* p) : impl(p) { } in shared_ptr_with_addressof_operator() function in shared_ptr_with_addressof_operator
71 PYBIND11_DECLARE_HOLDER_TYPE(T, shared_ptr_with_addressof_operator<T>);
339 using HolderWithAddressOf = shared_ptr_with_addressof_operator<TypeForHolderWithAddressOf>; in TEST_SUBMODULE()