| 144 | // See http://stackoverflow.com/questions/35753920 for details. |
| 145 | template <typename...> |
| 146 | struct deduce_to_void : std::common_type<void> {}; |
| 147 | |
| 148 | template <typename... T> |
| 149 | using void_t = typename deduce_to_void<T...>::type; |
nothing calls this directly
no outgoing calls
no test coverage detected