From b9fe79153b87d99022859bd65547a7c67e01c41d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 1 Mar 2013 14:42:36 +0100 Subject: Fix a couple of remaining warnings (missing newlines, inline-noinline, meaningless type qualifiers) --- Eigen/src/Core/BooleanRedux.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'Eigen/src/Core/BooleanRedux.h') diff --git a/Eigen/src/Core/BooleanRedux.h b/Eigen/src/Core/BooleanRedux.h index 57efd8e69..a235a14e6 100644 --- a/Eigen/src/Core/BooleanRedux.h +++ b/Eigen/src/Core/BooleanRedux.h @@ -85,9 +85,7 @@ inline bool DenseBase::all() const && SizeAtCompileTime * (CoeffReadCost + NumTraits::AddCost) <= EIGEN_UNROLLING_LIMIT }; if(unroll) - return internal::all_unroller::run(derived()); + return internal::all_unroller::run(derived()); else { for(Index j = 0; j < cols(); ++j) @@ -111,9 +109,7 @@ inline bool DenseBase::any() const && SizeAtCompileTime * (CoeffReadCost + NumTraits::AddCost) <= EIGEN_UNROLLING_LIMIT }; if(unroll) - return internal::any_unroller::run(derived()); + return internal::any_unroller::run(derived()); else { for(Index j = 0; j < cols(); ++j) -- cgit v1.2.3