From 9145f963d80d6a02f0f96a47758050a89184a3ed Mon Sep 17 00:00:00 2001 From: Martin Leitner-Ankerl Date: Fri, 14 Jan 2022 18:43:03 +0100 Subject: [PATCH] bump version to 3.11.5 --- CMakeLists.txt | 2 +- README.md | 2 +- src/include/robin_hood.h | 8 +++----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0aeb590..8a030d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) project(robin-hood-hashing - VERSION 3.11.4 + VERSION 3.11.5 LANGUAGES CXX ) diff --git a/README.md b/README.md index 770b615..9ebd788 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ 1. Create `conanfile.txt` in your source dir (don't forget to update the version) ```ini [requires] - robin-hood-hashing/3.11.4 + robin-hood-hashing/3.11.5 [generators] cmake diff --git a/src/include/robin_hood.h b/src/include/robin_hood.h index aaf37e4..0af031f 100644 --- a/src/include/robin_hood.h +++ b/src/include/robin_hood.h @@ -36,7 +36,7 @@ // see https://semver.org/ #define ROBIN_HOOD_VERSION_MAJOR 3 // for incompatible API changes #define ROBIN_HOOD_VERSION_MINOR 11 // for adding functionality in a backwards-compatible manner -#define ROBIN_HOOD_VERSION_PATCH 4 // for backwards-compatible bug fixes +#define ROBIN_HOOD_VERSION_PATCH 5 // for backwards-compatible bug fixes #include #include @@ -1837,8 +1837,7 @@ class Table } template - iterator try_emplace(const_iterator hint, const key_type& key, - Args&&... args) { + iterator try_emplace(const_iterator hint, const key_type& key, Args&&... args) { (void)hint; return try_emplace_impl(key, std::forward(args)...).first; } @@ -1860,8 +1859,7 @@ class Table } template - iterator insert_or_assign(const_iterator hint, const key_type& key, - Mapped&& obj) { + iterator insert_or_assign(const_iterator hint, const key_type& key, Mapped&& obj) { (void)hint; return insertOrAssignImpl(key, std::forward(obj)).first; }