aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/AnnoyingScalar.h
Commit message (Collapse)AuthorAge
* Fix clang tidy warnings in AnnoyingScalar.Gravatar Antonio Sanchez2021-04-05
| | | | | | | | Clang-tidy complains that full specializations in headers can cause ODR violations. Marked these as `inline` to fix. It also complains about renaming arguments in specializations. Set the argument names to match.
* Fix two bugs in commitGravatar Rasmus Munk Larsen2021-04-02
|
* Disable an expected warning in unit testGravatar Gael Guennebaud2019-10-08
|
* bug #1577: fix msvc compilation of unit test, msvc defines ptrdiff_t as long ↵Gravatar Gael Guennebaud2018-07-30
| | | | long
* Pass by const ref.Gravatar Gael Guennebaud2018-07-19
|
* bug #1432: fix conservativeResize for non-relocatable scalar types. For ↵Gravatar Gael Guennebaud2018-07-18
| | | | those we need to by-pass realloc routines and fall-back to allocate as new - copy - delete. The remaining problem is that we don't have any mechanism to accurately determine whether a type is relocatable or not, so currently let's be super conservative using either RequireInitialization or std::is_trivially_copyable
* Generalize ScalarWithExceptions to a full non-copyable and trowing scalar ↵Gravatar Gael Guennebaud2018-07-18
type to be used in other unit tests.