aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-07-12 11:17:53 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-07-12 11:17:53 +0200
commit8bdb214fd0513e954dd2da86989338144b9ac5b0 (patch)
treef5b02ce3700dcc486fa2eb94eb73477b9aac9cfc
parenta9060378d32411043f3e6995092d10070fa0ce1b (diff)
remove double ;;
-rwxr-xr-xEigen/src/Core/arch/SSE/PacketMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/arch/SSE/PacketMath.h b/Eigen/src/Core/arch/SSE/PacketMath.h
index c944d2c0e..2e815c0c5 100755
--- a/Eigen/src/Core/arch/SSE/PacketMath.h
+++ b/Eigen/src/Core/arch/SSE/PacketMath.h
@@ -663,7 +663,7 @@ template<> EIGEN_STRONG_INLINE int predux_mul<Packet4i>(const Packet4i& a)
// TODO try to call _mm_mul_epu32 directly
EIGEN_ALIGN16 int aux[4];
pstore(aux, a);
- return (aux[0] * aux[1]) * (aux[2] * aux[3]);;
+ return (aux[0] * aux[1]) * (aux[2] * aux[3]);
}
// min