BLI: fix forwarding with incorrect type

This commit is contained in:
Jacques Lucke
2020-06-11 16:01:25 +02:00
parent a364032dff
commit 49af2f85c3

View File

@@ -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));
}
/**