| 965 | |
| 966 | // Compiler intrinsics |
| 967 | template <typename T> struct is_enum { static DOCTEST_CONSTEXPR bool value = __is_enum(T); }; |
| 968 | template <typename T> struct underlying_type { using type = __underlying_type(T); }; |
| 969 | |
| 970 | template <typename T> struct is_pointer : false_type { }; |
nothing calls this directly
no outgoing calls
no test coverage detected