diff --git a/unsupported/Eigen/CXX11/src/util/CXX11Meta.h b/unsupported/Eigen/CXX11/src/util/CXX11Meta.h index 04588d7ed..149ceaff0 100644 --- a/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +++ b/unsupported/Eigen/CXX11/src/util/CXX11Meta.h @@ -37,6 +37,7 @@ struct numeric_list { constexpr static std::size_t count = sizeof...(nn); }; template struct numeric_list { static const std::size_t count = sizeof...(nn) + 1; const static T first_value = n; }; +#ifndef EIGEN_PARSED_BY_DOXYGEN /* numeric list constructors * * equivalencies: @@ -95,6 +96,7 @@ template struct h_skip_helper_type struct h_skip_helper_type<0, t, tt...> { typedef type_list type; }; template struct h_skip_helper_type { typedef type_list<> type; }; template<> struct h_skip_helper_type<0> { typedef type_list<> type; }; +#endif //not EIGEN_PARSED_BY_DOXYGEN template struct h_skip {