From 7fd73fe96da3a5f77ead7531234b6af0a358e892 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Wed, 16 Dec 2020 08:47:39 +0000 Subject: [PATCH] Change std::move to etl::move in etl::forward_list --- include/etl/forward_list.h | 4 ++-- include/etl/version.h | 2 +- library.json | 2 +- library.properties | 2 +- support/Release notes.txt | 4 ++++ 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/include/etl/forward_list.h b/include/etl/forward_list.h index a870aba6..3ece78fc 100644 --- a/include/etl/forward_list.h +++ b/include/etl/forward_list.h @@ -1821,7 +1821,7 @@ namespace etl forward_list_ext(forward_list_ext&& other) : etl::iforward_list(*other.p_node_pool, other.p_node_pool->max_size(), true) { - this->move_container(std::move(other)); + this->move_container(etl::move(other)); } //************************************************************************* @@ -1830,7 +1830,7 @@ namespace etl forward_list_ext(forward_list_ext&& other, etl::ipool& node_pool) : etl::iforward_list(node_pool, node_pool.max_size(), true) { - this->move_container(std::move(other)); + this->move_container(etl::move(other)); } #endif diff --git a/include/etl/version.h b/include/etl/version.h index 3fe3411a..306423b4 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -39,7 +39,7 @@ SOFTWARE. #define ETL_VERSION_MAJOR 19 #define ETL_VERSION_MINOR 3 -#define ETL_VERSION_PATCH 4 +#define ETL_VERSION_PATCH 5 #define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH) #define ETL_VERSION_W ETL_STRINGIFY(ETL_VERSION_MAJOR) L"." ETL_STRINGIFY(ETL_VERSION_MINOR) L"." ETL_STRINGIFY(ETL_VERSION_PATCH) #define ETL_VERSION_U16 ETL_STRINGIFY(ETL_VERSION_MAJOR) u"." ETL_STRINGIFY(ETL_VERSION_MINOR) u"." ETL_STRINGIFY(ETL_VERSION_PATCH) diff --git a/library.json b/library.json index 2139766a..9baacb26 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "19.3.4", + "version": "19.3.5", "author s": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index b9edf9e0..a0d9a127 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=19.3.4 +version=19.3.5 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/support/Release notes.txt b/support/Release notes.txt index 535b7f99..7fe529ca 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,7 @@ +=============================================================================== +19.3.5 +Change std::move to etl::move in etl::forward_list + =============================================================================== 19.3.4 Make etl::span compliant with STL API by adding missing overloads for span::first + span::last