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:
Diffstat (limited to 'source/blender/blenlib/BLI_multi_value_map.hh')
-rw-r--r--source/blender/blenlib/BLI_multi_value_map.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_multi_value_map.hh b/source/blender/blenlib/BLI_multi_value_map.hh
index 4113085a1e3..98b55067a5c 100644
--- a/source/blender/blenlib/BLI_multi_value_map.hh
+++ b/source/blender/blenlib/BLI_multi_value_map.hh
@@ -38,6 +38,9 @@
namespace blender {
template<typename Key, typename Value> class MultiValueMap {
+ public:
+ using size_type = int64_t;
+
private:
using MapType = Map<Key, Vector<Value>>;
MapType map_;