| 48 | // http://stackoverflow.com/a/41976419/1866775 |
| 49 | template <typename T, typename... Types> |
| 50 | shared_ref<T> make_shared_ref(Types&&... args) |
| 51 | { |
| 52 | return shared_ref<T>(new T(std::forward<Types>(args)...)); |
| 53 | } |
| 54 | |
| 55 | } // namespace fplus |
nothing calls this directly
no outgoing calls
no test coverage detected