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:
authorCampbell Barton <ideasman42@gmail.com>2020-06-13 05:50:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-13 05:50:07 +0300
commitdea2c3f256435f6384c1b42e9073a014489011b0 (patch)
tree4b5e5a61d559fee9d454b2140a8fa6f2864a6353 /source/blender/blenlib/BLI_memory_utils.hh
parent098008f42d8127d9b60717c7059d3c55a3bfada7 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/BLI_memory_utils.hh')
-rw-r--r--source/blender/blenlib/BLI_memory_utils.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_memory_utils.hh b/source/blender/blenlib/BLI_memory_utils.hh
index 55dca98fb07..81792e2101c 100644
--- a/source/blender/blenlib/BLI_memory_utils.hh
+++ b/source/blender/blenlib/BLI_memory_utils.hh
@@ -40,7 +40,7 @@ namespace blender {
template<typename T> void default_construct_n(T *ptr, uint n)
{
/* This is not strictly necessary, because the loop below will be optimized away anyway. It is
- * nice to make behavior this explicitely, though. */
+ * nice to make behavior this explicitly, though. */
if (std::is_trivially_constructible<T>::value) {
return;
}
@@ -62,7 +62,7 @@ template<typename T> void default_construct_n(T *ptr, uint n)
template<typename T> void destruct_n(T *ptr, uint n)
{
/* This is not strictly necessary, because the loop below will be optimized away anyway. It is
- * nice to make behavior this explicitely, though. */
+ * nice to make behavior this explicitly, though. */
if (std::is_trivially_destructible<T>::value) {
return;
}
@@ -163,7 +163,7 @@ template<typename T> void initialized_relocate_n(T *src, uint n, T *dst)
*
* Before:
* src: initialized
- * dst: uinitialized
+ * dst: uninitialized
* After:
* src: uninitialized
* dst: initialized