aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/stddeque_overload.cpp
Commit message (Collapse)AuthorAge
* Fix gcc 8.1 warning: "maybe use uninitialized"Gravatar Gael Guennebaud2018-10-07
|
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
|
* Fix unit test: accessing elements in a deque by offsetting a pointer to ↵Gravatar Gael Guennebaud2016-02-12
| | | | another element causes undefined behavior.
* 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).