Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-06-11 17:01:25 +0300
committerJacques Lucke <jacques@blender.org>2020-06-11 17:01:25 +0300
commit49af2f85c3f1cfee4e2344a9eef5a2cb8bb5905f (patch)
treebb5c79eadfc2cf7b424c72c058ecf199c2c0de24 /source/blender/blenlib/BLI_map.hh
parenta364032dff0c31d669aca4f2fcbaec4b0eeb152e (diff)
BLI: fix forwarding with incorrect type
Diffstat (limited to 'source/blender/blenlib/BLI_map.hh')
-rw-r--r--source/blender/blenlib/BLI_map.hh2
1 files changed, 1 insertions, 1 deletions
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>(key), create_value, modify_value, m_hash(key));
+ std::forward<ForwardKey>(key), create_value, modify_value, m_hash(key));
}
/**