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:
authorJulian Eisel <julian@blender.org>2020-06-13 23:54:07 +0300
committerJulian Eisel <julian@blender.org>2020-06-13 23:54:07 +0300
commit5e50380ddc99dd8c8c8067482b2dce186e7c3fb4 (patch)
tree7e5f438a3a30996351a7ee256ffd144e2dab45ad /source/blender/blenlib/BLI_set.hh
parent15e6f9012c84c4ebce41bf1928635a3abe046a55 (diff)
parent23d0361b30da481ffe71142d4efd336dfb1f27f2 (diff)
Merge branch 'master' into asset-uuid
Diffstat (limited to 'source/blender/blenlib/BLI_set.hh')
-rw-r--r--source/blender/blenlib/BLI_set.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_set.hh b/source/blender/blenlib/BLI_set.hh
index af0c3424f5a..d23aa96e434 100644
--- a/source/blender/blenlib/BLI_set.hh
+++ b/source/blender/blenlib/BLI_set.hh
@@ -91,7 +91,7 @@ template<
* that (unlike vector) initializing a set has a O(n) cost in the number of slots.
*
* When Key is large, the small buffer optimization is disabled by default to avoid large
- * unexpected allocations on the stack. It can still be enabled explicitely though.
+ * unexpected allocations on the stack. It can still be enabled explicitly though.
*/
uint32_t InlineBufferCapacity = (sizeof(Key) < 100) ? 4 : 0,
/**
@@ -433,7 +433,7 @@ class Set {
/**
* Creates a new slot array and reinserts all keys inside of that. This method can be used to get
- * rid of dummy slots. Also this is useful for benchmarking the grow function.
+ * rid of removed slots. Also this is useful for benchmarking the grow function.
*/
void rehash()
{