Commit edbfe527 authored by Damien Lacoste's avatar Damien Lacoste
Browse files

tango_type_traits: make is_enum_compatible inherit false_type

parent a3bfc888
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -653,9 +653,8 @@ using is_tango_base_type_t = typename is_tango_base_type<T>::type;
///
/// Example usage: `static_assert(is_enum_compatible_v<T>, "Failing XYZ")`
template <typename T, typename Enable = void>
struct is_enum_compatible
struct is_enum_compatible : std::false_type
{
    static constexpr bool value = std::false_type{};
};

template <typename T>