aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/CopyHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/CopyHelper.h')
-rw-r--r--src/Core/CopyHelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Core/CopyHelper.h b/src/Core/CopyHelper.h
index 72229eac4..75d3af2e8 100644
--- a/src/Core/CopyHelper.h
+++ b/src/Core/CopyHelper.h
@@ -63,7 +63,7 @@ template<typename Scalar, typename Derived>
template<typename OtherDerived>
void MatrixBase<Scalar, Derived>::_copy_helper(const MatrixBase<Scalar, OtherDerived>& other)
{
- if(SizeAtCompileTime != Dynamic && SizeAtCompileTime <= EIGEN_LOOP_UNROLLING_LIMIT)
+ if(SizeAtCompileTime != Dynamic && SizeAtCompileTime <= 25)
CopyHelperUnroller<SizeAtCompileTime, RowsAtCompileTime>::run(*this, other);
else
for(int i = 0; i < rows(); i++)