aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/StlSupport
Commit message (Collapse)AuthorAge
* Remove private access of std::deque::_M_impl.Gravatar Antonio Sanchez2020-12-10
| | | | | This no longer works on gcc or clang, so we should just remove the hack. The default should compile to similar code anyways.
* Fix StlDeque for GCC 10Gravatar David Tellenbach2020-07-29
| | | | | StlDeque extends std::deque by accessing some of its internal members. Since GCC 10 these are not accessible anymore.
* Fixed a few more shadowing warnings when compiling with g++ (and c++03)Gravatar Christoph Hertzberg2018-08-30
|
* Fix numerous shadow-warnings for GCC<=4.8Gravatar Christoph Hertzberg2018-08-28
|
* Add std:: namespace prefix to all (hopefully) instances if size_t/ptrdfiff_tGravatar Gael Guennebaud2017-01-23
|
* bug #1167: simplify installation of header files using cmake's ↵Gravatar Gael Guennebaud2016-08-29
| | | | install(DIRECTORY ...) command.
* bug #1164: fix list and deque specializations such that our aligned ↵Gravatar Damien R2016-02-03
| | | | allocator is automatically activatived only when the user did not specified an allocator (or specified the default std::allocator).
* bug #829: Introduce macro EIGEN_HAS_CXX11_CONTAINERS and do not specialize ↵Gravatar Christoph Hertzberg2015-08-14
| | | | std-containers if it is enabled.
* 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.
* Fic bug #819: include path of details.hGravatar Gael Guennebaud2014-06-04
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* oops EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION now perfroms full specialization,Gravatar Gael Guennebaud2011-08-22
| | | | no need for the typename keywords
* fix bug #262: Compilation error of stdvector_overload test with GCC 4.6Gravatar Gael Guennebaud2011-08-22
| | | | | Now our aligned allocator is automatically activatived only when the user did not specified an allocator (or specified the default std::allocator).
* better fix for gcc 4.6.0 / ptrdiff_t, as suggested by BenoitGravatar Thomas Capricelli2011-05-05
|
* Fix compilation with gcc-4.6.0, patch provided by Anton Gladky ↵Gravatar Thomas Capricelli2011-05-05
| | | | | | <gladky.anton@gmail.com>, working on debian packaging.
* Applied a fix to our std::vector specialization which prevents the usage of ↵Gravatar Hauke Heibel2010-12-02
| | | | workaround_msvc_stl_support when T is not a class.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* fix compilation and warnings with fcc 4.0.1Gravatar Gael Guennebaud2010-10-13
|
* add cmakelists for 2 subdirs and make sure all subdirs are installed (GLOB)Gravatar Benoit Jacob2010-09-14
|
* Removed debug outputs.Gravatar Hauke Heibel2010-07-28
|
* * 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
* email changeGravatar Gael Guennebaud2010-06-24
|
* Fixed two bad errors on std::vector.Gravatar Hauke Heibel2010-04-21
| | | | | First, MSVC 2010 does not ship a 'fixed'/'adapted' STL. Second, only under very rare cases we do not even need the aligned_allocator.
* Added support for STL lists with aligned Eigen types.Gravatar Hauke Heibel2010-04-18