From 49af2f85c3f1cfee4e2344a9eef5a2cb8bb5905f Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Thu, 11 Jun 2020 16:01:25 +0200 Subject: [PATCH] BLI: fix forwarding with incorrect type --- source/blender/blenlib/BLI_map.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_map.hh b/source/blender/blenlib/BLI_map.hh index f20f7b47647..48c58341525 100644 --- a/source/blender/blenlib/BLI_map.hh +++ b/source/blender/blenlib/BLI_map.hh @@ -470,7 +470,7 @@ class Map { const ModifyValueF &modify_value) -> decltype(create_value(nullptr)) { return this->add_or_modify__impl( - std::forward(key), create_value, modify_value, m_hash(key)); + std::forward(key), create_value, modify_value, m_hash(key)); } /**