aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/arch/SSE/PacketMath.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-17 16:08:07 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-17 16:08:07 +0100
commit91ab2489dde3f274a2ff65741e7bda89a5487cb0 (patch)
treedfb3f4ed01318e110fb3393dcae35659d446fa30 /Eigen/src/Core/arch/SSE/PacketMath.h
parent9daf8eba6f02555ea1e0dee0fbbcadbeab985f0d (diff)
Fix compilation with GCC/AVX (workaround __m128 and __m256 being the same type with default ABI)
Diffstat (limited to 'Eigen/src/Core/arch/SSE/PacketMath.h')
-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 86d94dffa..acbbd0869 100755
--- a/Eigen/src/Core/arch/SSE/PacketMath.h
+++ b/Eigen/src/Core/arch/SSE/PacketMath.h
@@ -34,7 +34,7 @@ namespace internal {
// One solution is to increase ABI version using -fabi-version=4 (or greater).
// To workaround this inconvenince, we rather wrap 128bit types into the following helper
// structure:
-// TODO disable this wrapper if abi-versio>=4, but to detect that without asking the user to define a macro?
+// TODO disable this wrapper if abi-versio>=4, but how to detect that without asking the user to define a macro?
template<typename T>
struct eigen_packet_wrapper
{