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_vector.hh')
-rw-r--r--source/blender/blenlib/BLI_vector.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh
index 0e878d549c1..5b88ad6fa7d 100644
--- a/source/blender/blenlib/BLI_vector.hh
+++ b/source/blender/blenlib/BLI_vector.hh
@@ -507,10 +507,10 @@ class Vector {
}
/**
- * Enlarges the size of the internal buffer that is considered to be initialized. This invokes
- * undefined behavior when when the new size is larger than the capacity. The method can be
- * useful when you want to call constructors in the vector yourself. This should only be done in
- * very rare cases and has to be justified every time.
+ * Enlarges the size of the internal buffer that is considered to be initialized.
+ * This invokes undefined behavior when the new size is larger than the capacity.
+ * The method can be useful when you want to call constructors in the vector yourself.
+ * This should only be done in very rare cases and has to be justified every time.
*/
void increase_size_by_unchecked(const int64_t n) noexcept
{