aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/dense_storage.cpp
Commit message (Collapse)AuthorAge
* Make DenseStorage<> trivially_copyableGravatar Alexander Karatarakis2021-06-30
|
* DenseStorage safely copy/swap.Gravatar Antonio Sanchez2021-04-22
| | | | | | | | Fixes #2229. For dynamic matrices with fixed-sized storage, only copy/swap elements that have been set. Otherwise, this leads to inefficient copying, and potential UB for non-initialized elements.
* bug #1046: add unit tests for correct propagation of alignment through ↵Gravatar Gael Guennebaud2019-02-19
| | | | std::alignment_of
* 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
* Switched to MPL2 license.Gravatar Hauke Heibel2013-08-12
|
* Added copy constructor and assignment to DenseStorage.Gravatar Hauke Heibel2013-08-10
Required by the standard even when its not used but elided. Added a test for DenseStorage copying and assignment.