#ifndef RFL_INTERNAL_ISUNDERLYINGENUMS_HPP_ #define RFL_INTERNAL_ISUNDERLYINGENUMS_HPP_ #include #include "../UnderlyingEnums.hpp" namespace rfl { namespace internal { template class is_underlying_enums; template class is_underlying_enums : public std::false_type {}; template <> class is_underlying_enums : public std::true_type {}; template constexpr bool is_underlying_enums_v = is_underlying_enums>>::value; } // namespace internal } // namespace rfl #endif