From 4901f75f5e04a567e9de3c2b5095c8b5ee050185 Mon Sep 17 00:00:00 2001 From: Sergei Shirokov Date: Sun, 31 May 2026 00:30:24 +0300 Subject: [PATCH] Fix `std::move` -> `etl::move` --- include/etl/intrusive_avl_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/intrusive_avl_tree.h b/include/etl/intrusive_avl_tree.h index f3330160..d0eac6a1 100644 --- a/include/etl/intrusive_avl_tree.h +++ b/include/etl/intrusive_avl_tree.h @@ -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;