Fix std::move -> etl::move

This commit is contained in:
Sergei Shirokov 2026-05-31 00:30:24 +03:00
parent 4b580906b1
commit 4901f75f5e

View File

@ -512,7 +512,7 @@ namespace etl
{
if (this != &other)
{
intrusive_avl_tree_base tmp(std::move(other));
intrusive_avl_tree_base tmp(etl::move(other));
swap(tmp);
}
return *this;