diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-07-21 22:22:57 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-07-21 22:22:57 +0100 |
commit | 3f4d527fe335a2871a5adcb0becf83bad31775a2 (patch) | |
tree | 4c2fa2ef9a4725c31129a758260680f4e962175f /contrib | |
parent | b86139074fa0d7f8e940c95170bc5c750e33d942 (diff) | |
download | rspamd-3f4d527fe335a2871a5adcb0becf83bad31775a2.tar.gz rspamd-3f4d527fe335a2871a5adcb0becf83bad31775a2.zip |
[Minor] Update svector to 1.0.2
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/DEPENDENCY_INFO.md | 2 | ||||
-rw-r--r-- | contrib/ankerl/svector.h | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/contrib/DEPENDENCY_INFO.md b/contrib/DEPENDENCY_INFO.md index 23234283b..d4fabd6b9 100644 --- a/contrib/DEPENDENCY_INFO.md +++ b/contrib/DEPENDENCY_INFO.md @@ -35,5 +35,5 @@ | fmt | 8.1.1 | MIT | NO | | | doctest | 2.4.6 | MIT | NO | | | function2 | 4.1.0 | Boost | NO | | -| ankerl/svector | 1.0.1 | MIT | NO | | +| ankerl/svector | 1.0.2 | MIT | NO | | | ankerl/unordered_dense | 1.0.2 | MIT | NO | | diff --git a/contrib/ankerl/svector.h b/contrib/ankerl/svector.h index 60edcfeab..dbd075ba4 100644 --- a/contrib/ankerl/svector.h +++ b/contrib/ankerl/svector.h @@ -1,5 +1,5 @@ // ┌─┐┬ ┬┌─┐┌─┐┌┬┐┌─┐┬─┐ Compact SVO optimized vector C++17 or higher -// └─┐└┐┌┘├┤ │ │ │ │├┬┘ Version 1.0.1 +// └─┐└┐┌┘├┤ │ │ │ │├┬┘ Version 1.0.2 // └─┘ └┘ └─┘└─┘ ┴ └─┘┴└─ https://github.com/martinus/svector // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. @@ -30,7 +30,7 @@ // see https://semver.org/spec/v2.0.0.html #define ANKERL_SVECTOR_VERSION_MAJOR 1 // incompatible API changes #define ANKERL_SVECTOR_VERSION_MINOR 0 // add functionality in a backwards compatible manner -#define ANKERL_SVECTOR_VERSION_PATCH 1 // backwards compatible bug fixes +#define ANKERL_SVECTOR_VERSION_PATCH 2 // backwards compatible bug fixes // API versioning with inline namespace, see https://www.foonathan.net/2018/11/inline-namespaces/ #define ANKERL_SVECTOR_VERSION_CONCAT1(major, minor, patch) v##major##_##minor##_##patch @@ -98,7 +98,7 @@ constexpr auto size_of_svector(size_t min_inline_capacity) -> size_t { */ template <typename T> constexpr auto automatic_capacity(size_t min_inline_capacity) -> size_t { - return cx_min((size_of_svector<T>(min_inline_capacity) - 1U) / sizeof(T), size_t(127)); + return cx_min((size_of_svector<T>(min_inline_capacity) - 1U) / sizeof(T), size_t{127}); } /** @@ -462,7 +462,7 @@ class svector { * * Destroys then empty elements in [source_begin, source_end( */ - static auto shift_right(T* source_begin, T* source_end, T* target_begin) { + static void shift_right(T* source_begin, T* source_end, T* target_begin) { // 1. uninitialized moves auto const num_moves = std::distance(source_begin, source_end); auto const target_end = target_begin + num_moves; @@ -529,6 +529,7 @@ class svector { std::destroy_at(storage); ::operator delete(storage); } + set_direct_and_size(0); } // performs a const_cast so we don't need this implementation twice @@ -659,7 +660,7 @@ public: } } - auto reserve(size_t s) { + void reserve(size_t s) { auto old_capacity = capacity(); auto new_capacity = calculate_new_capacity(s, old_capacity); if (new_capacity > old_capacity) { @@ -912,7 +913,7 @@ public: } template <typename It> - auto insert(const_iterator pos, It first, It last, std::forward_iterator_tag /*unused*/) { + auto insert(const_iterator pos, It first, It last, std::forward_iterator_tag /*unused*/) -> iterator { auto* p = make_uninitialized_space(pos, std::distance(first, last)); std::uninitialized_copy(first, last, p); return p; |