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-04-04 15:13:53 +0300
committerJacques Lucke <jacques@blender.org>2020-04-04 15:13:53 +0300
commitfe98d8c0eabcd287dc452c893e569e7448ad029a (patch)
tree7da2103bb14c24d04965133adffc5d9b4520b52f
parent6fa904765a92e1847f8b28b1062c91dcf37beb52 (diff)
Cleanup: remove unused method
-rw-r--r--source/blender/blenlib/BLI_string_map.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenlib/BLI_string_map.h b/source/blender/blenlib/BLI_string_map.h
index ed97a6ae349..f304b140bcc 100644
--- a/source/blender/blenlib/BLI_string_map.h
+++ b/source/blender/blenlib/BLI_string_map.h
@@ -450,15 +450,6 @@ template<typename T, typename Allocator = GuardedAllocator> class StringMap {
}
ITER_SLOTS_END(offset);
}
-
- template<typename ForwardT> void add__impl(StringRef key, ForwardT &&value)
- {
- this->ensure_can_add();
- uint32_t hash = this->compute_string_hash(key);
- ITER_SLOTS_BEGIN (hash, m_array, , item, offset) {
- }
- ITER_SLOTS_END(offset);
- }
};
#undef ITER_SLOTS_BEGIN