Change std::move to etl::move in etl::forward_list

This commit is contained in:
John Wellbelove 2020-12-16 08:47:39 +00:00
parent d7daf59a5b
commit 7fd73fe96d
5 changed files with 9 additions and 5 deletions

View File

@ -1821,7 +1821,7 @@ namespace etl
forward_list_ext(forward_list_ext&& other)
: etl::iforward_list<T>(*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<T>(node_pool, node_pool.max_size(), true)
{
this->move_container(std::move(other));
this->move_container(etl::move(other));
}
#endif

View File

@ -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)

View File

@ -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"

View File

@ -1,5 +1,5 @@
name=Embedded Template Library
version=19.3.4
version=19.3.5
author= John Wellbelove <john.wellbelove@etlcpp.com>
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
license=MIT

View File

@ -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