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:
authorJeroen Bakker <jeroen@blender.org>2021-03-17 11:14:38 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-17 11:14:38 +0300
commit187f358f33e5b409ef12a5bce92a76edc3a77725 (patch)
tree0c0f8391d4e349f47cd51aa37ed09559bbe30efd /source/blender/blenlib/BLI_multi_value_map.hh
parent97defd9cd79b6e3ed0e52481a7078107dbe0522b (diff)
Cleanup: Use blender::MultiValueMap.
Fixed concern raise on {93e2491ee724}.
Diffstat (limited to 'source/blender/blenlib/BLI_multi_value_map.hh')
-rw-r--r--source/blender/blenlib/BLI_multi_value_map.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_multi_value_map.hh b/source/blender/blenlib/BLI_multi_value_map.hh
index 4113085a1e3..5652e8f1bba 100644
--- a/source/blender/blenlib/BLI_multi_value_map.hh
+++ b/source/blender/blenlib/BLI_multi_value_map.hh
@@ -25,7 +25,7 @@
* and their order is maintained.
*
* This data structure is different from a `std::multi_map`, because multi_map can store the same
- * key more than once and MultiValueMap can't.
+* key more than once and MultiValueMap can't.
*
* Currently, this class exists mainly for convenience. There are no performance benefits over
* using Map<Key, Vector<Value>>. In the future, a better implementation for this data structure