From ee06f786797b74e75e6c2eae1209fa6389c49876 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 4 Nov 2014 21:58:52 +0100 Subject: Introduce unified macros to identify compiler, OS, and architecture. They are all defined in util/Macros.h and prefixed with EIGEN_COMP_, EIGEN_OS_, and EIGEN_ARCH_ respectively. --- Eigen/StdDeque | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Eigen/StdDeque') diff --git a/Eigen/StdDeque b/Eigen/StdDeque index f27234778..be3a7f82b 100644 --- a/Eigen/StdDeque +++ b/Eigen/StdDeque @@ -14,7 +14,7 @@ #include "Core" #include -#if (defined(_MSC_VER) && defined(_WIN64)) /* MSVC auto aligns in 64 bit builds */ +#if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 /* MSVC auto aligns in 64 bit builds */ #define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...) -- cgit v1.2.3