cereal
A C++11 library for serialization
|
Checks if a type is an enum. More...
#include </home/shane/workspace/cereal/include/cereal/types/common.hpp>
Public Types | |
using | type = StrippedT |
using | base_type = typename enum_underlying_type< StrippedT, value >::type |
Static Public Attributes | |
static const bool | value = std::is_enum<StrippedT>::value |
Checks if a type is an enum.
This is needed over simply calling std::is_enum because the type traits checking at compile time will attempt to call something like load_minimal with a special NoConvertRef struct that wraps up the true type.
This will strip away any of that and also expose the true underlying type.