| 275 | // A helper function to suppress bogus "conditional expression is constant" |
| 276 | // warnings. |
| 277 | template <typename T> FMT_CONSTEXPR T const_check(T value) { return value; } |
| 278 | |
| 279 | // A workaround for gcc 4.8 to make void_t work in a SFINAE context. |
| 280 | template <typename... Ts> struct void_t_impl { using type = void; }; |
no outgoing calls
no test coverage detected