From 25e9c576b6a8534271a0af3b87a64ab7aa0e26bf Mon Sep 17 00:00:00 2001 From: guhwanbae Date: Wed, 2 Mar 2022 22:17:49 +0900 Subject: [PATCH] Added missing namespace qualifier for the move function in the flat_map.h --- include/rustfp/flat_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rustfp/flat_map.h b/include/rustfp/flat_map.h index c935fb1..29d10de 100644 --- a/include/rustfp/flat_map.h +++ b/include/rustfp/flat_map.h @@ -132,7 +132,7 @@ auto FlatMap::next() -> Option { continue; } - sub_self_opt = Some(move(sub_self)); + sub_self_opt = Some(std::move(sub_self)); // success case return std::move(next_opt);