From aec48143701446e22667549e34509875e42513f9 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 29 Jul 2015 11:11:23 +0200 Subject: Many files were missing in previous changeset. --- unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h') diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h b/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h index 52f95b2a2..e092c0e04 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h @@ -200,7 +200,7 @@ struct TensorEvaluator, Device // TODO(ndjaitly): write a better packing routine that uses // local structure. - EIGEN_ALIGN_DEFAULT typename internal::remove_const::type + EIGEN_ALIGN_MAX typename internal::remove_const::type values[packetSize]; for (int i = 0; i < packetSize; ++i) { values[i] = coeff(index+i); @@ -259,7 +259,7 @@ struct TensorEvaluator, Device> eigen_assert(index+packetSize-1 < dimensions().TotalSize()); // This code is pilfered from TensorMorphing.h - EIGEN_ALIGN_DEFAULT CoeffReturnType values[packetSize]; + EIGEN_ALIGN_MAX CoeffReturnType values[packetSize]; internal::pstore(values, x); for (int i = 0; i < packetSize; ++i) { this->coeffRef(index+i) = values[i]; -- cgit v1.2.3