id summary reporter owner description type status milestone component version severity resolution keywords cc 6394 Strongly typed enum not recognized by boost::is_enum tommitissari@… John Maddock "Using Intel c++ compiler XE 12.1 the new c++11 strongly typed enum type isn't recognized by boost::is_enum. It is recognized by std::is_enum though: {{{ #include #include #include //... enum class StrongEnum { first, second }; std::cout << boost::is_enum::value << std::endl; std::cout << std::is_enum::value << std::endl; }}} The output is:[[BR]] 0[[BR]] 1 Notice that the same bug is probably the reason why boost serialization for strongly typed enum's doesn't work either." Bugs closed To Be Determined type_traits Boost 1.48.0 Problem worksforme