| 31 | |
| 32 | template <typename T, typename... Args> |
| 33 | Ref<T> CreateRef(Args&&... args) { |
| 34 | return std::make_shared<T>(std::forward<Args>(args)...); |
| 35 | } |
| 36 | |
| 37 | template <typename T> |
| 38 | using WeakRef = std::weak_ptr<T>; |
nothing calls this directly
no outgoing calls
no test coverage detected