aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/StdDeque
Commit message (Collapse)AuthorAge
* bug #1389: MSVC's std containers do not properly align in 64 bits mode if ↵Gravatar Gael Guennebaud2017-02-03
| | | | the requested alignment is larger than 16 bytes (e.g., with AVX)
* Introduce unified macros to identify compiler, OS, and architecture. They ↵Gravatar Gael Guennebaud2014-11-04
| | | | are all defined in util/Macros.h and prefixed with EIGEN_COMP_, EIGEN_OS_, and EIGEN_ARCH_ respectively.
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* * added EIGEN_ALIGNED_ALLOCATOR macro to allow specifying a different ↵Gravatar Kenneth Riddile2010-07-26
aligned allocator * attempted to add support for std::deque by copying and modifying the std::vector implementation...MSVC still fails to compile with the std::deque::resize() "will not be aligned" error...probably missing something simple but I'm not sure how to make it work