Skip to content

Releases: gmarcais/compact_vector

Version 0.1.3

27 Jan 18:59

Choose a tag to compare

  • Check before deallocating a nullptr (undefined behavior for a standard allocator)

Compilation with g++12

20 Feb 22:35

Choose a tag to compare

  • Fix compilation with g++ 12

Fix C++20

09 May 18:09

Choose a tag to compare

  • Fixes issues with comparison operator ambiguity and C++20 standard
  • Fixes deprecated warning errors with C++17 and C++20 (std::iteration, std::allocator)

Full Changelog: v0.1.0...v0.1.1

Version 0.1.0

28 May 13:28

Choose a tag to compare

  • At last a version number that makes some sense.
  • Includes pull request from @benrobby (thanks)
  • Fix deprecated warning with gtest

Extra security for cas_vector iterators

07 Jul 14:40

Choose a tag to compare

Pre-release

For cas_vector iterator, by default, the operator[] now has a strong thread safety: it is safe to use by multiple threads even accessing the same cell.
Compared to ts_vector which are only safe when different threads access different cells.