diff --git a/Eigen/src/Core/util/IntegralConstant.h b/Eigen/src/Core/util/IntegralConstant.h index f6b206275..a4394c464 100644 --- a/Eigen/src/Core/util/IntegralConstant.h +++ b/Eigen/src/Core/util/IntegralConstant.h @@ -32,6 +32,12 @@ template struct get_compile_time,Default> { enum { value = N }; }; +template +struct get_compile_time,Default> { + enum { value = N }; +}; + + template struct is_compile_time { enum { value = false }; }; template struct is_compile_time > { enum { value = true }; };