Is there a type trait, or is it possible to write a type trait is_scoped_enum<T> such that:
- if
Tis a scoped enumeration,is_scoped_enum<T>::valueistrueand - if
Tis any other type,is_scoped_enum<T>::valueis false
|
Is there a type trait, or is it possible to write a type trait
|
|||
| show 1 more comment |
|
I think testing if it is an enum and not implicitly convertible to the underlying type should do the trick.
|
|||||||||||||
|
enum classis called in C++11, yes. – James McNellis May 23 '12 at 17:18