| 22 | // std::make_unique for C++11 |
| 23 | // https://stackoverflow.com/a/17902439/8643197 |
| 24 | template <class T> struct _Unique_if { |
| 25 | typedef std::unique_ptr<T> _Single_object; |
| 26 | }; |
| 27 | |
| 28 | template <class T> struct _Unique_if<T[]> { |
| 29 | typedef std::unique_ptr<T[]> _Unknown_bound; |
nothing calls this directly
no outgoing calls
no test coverage detected