| 41 | #ifdef TAXONOMY_USE_SHARED_PTR |
| 42 | template <typename T> |
| 43 | T clone(T& t) { |
| 44 | return t; |
| 45 | } |
| 46 | template <typename T, typename U> |
| 47 | std::shared_ptr<T> cast(const std::shared_ptr<U>& u); |
| 48 | template <typename T, typename U> |
no outgoing calls
no test coverage detected