| 127 | |
| 128 | template <typename... Targs> |
| 129 | static RefCountedPtr Create(Targs&&... args) { |
| 130 | return RefCountedPtr(new T(std::forward<Targs>(args)...), 0); |
| 131 | } |
| 132 | |
| 133 | private: |
| 134 | RefCountedPtr(T* ptr, int x) : ptr_(ptr) { |
nothing calls this directly
no test coverage detected