| 110 | using void_t = std::void_t<T>; |
| 111 | #else |
| 112 | template<typename ... Ts> struct make_void { |
| 113 | typedef void type; |
| 114 | }; |
| 115 | template<typename ... Ts> using void_t = typename make_void<Ts...>::type; |
| 116 | #endif |
| 117 |
nothing calls this directly
no outgoing calls
no test coverage detected