| 952 | |
| 953 | struct true_type { static DOCTEST_CONSTEXPR bool value = true; }; |
| 954 | struct false_type { static DOCTEST_CONSTEXPR bool value = false; }; |
| 955 | |
| 956 | template <typename T> struct remove_reference { using type = T; }; |
| 957 | template <typename T> struct remove_reference<T&> { using type = T; }; |
nothing calls this directly
no outgoing calls
no test coverage detected