| 138 | //! create a shared_ptr as an alias of the underlying ptr |
| 139 | template <typename T> |
| 140 | std::shared_ptr<T> make_shared(T* ptr) const { |
| 141 | return {m_ptr, ptr}; |
| 142 | } |
| 143 | }; |
| 144 | |
| 145 | //! exception to be thrown when python callback fails |
no outgoing calls
no test coverage detected