Fixing typo.

This commit is contained in:
Mehdi Goli 2018-08-08 11:38:10 +01:00
parent 22031ab59a
commit 67711eaa31

View File

@ -1095,7 +1095,7 @@ bool all(T t, Ts ... ts){ return t && all(ts...); }
// Wrapping #pragma unroll in a macro since it is required for SYCL
#if defined(__SYCL_DEVICE_ONLY__)
#if defined(_MSC_VER)
#define EIGEN_UNROLL_LOOP __Pragma(unroll)
#define EIGEN_UNROLL_LOOP __pragma(unroll)
#else
#define EIGEN_UNROLL_LOOP _Pragma("unroll")
#endif