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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-07-30 15:20:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-30 15:20:31 +0300
commit5aa45c43f278eb78a1f68d947590c43affe42df8 (patch)
tree2aaf30b4fc96bbd36eefd33cfd53dd886e550aff /intern
parent88e774aa34c8ffd90c7bc7e71d3bc290d78b4f2d (diff)
Cleanup: missing leading '*' from comment blocks
Diffstat (limited to 'intern')
-rw-r--r--intern/memutil/MEM_CacheLimiter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/memutil/MEM_CacheLimiter.h b/intern/memutil/MEM_CacheLimiter.h
index 6ca61fbcde1..a8706454de8 100644
--- a/intern/memutil/MEM_CacheLimiter.h
+++ b/intern/memutil/MEM_CacheLimiter.h
@@ -299,9 +299,9 @@ template<class T> class MEM_CacheLimiter {
if (!can_destroy_element(elem))
continue;
- /* by default 0 means highest priority element */
- /* casting a size type to int is questionable,
- but unlikely to cause problems */
+ /* By default 0 means highest priority element. */
+ /* Casting a size type to int is questionable,
+ * but unlikely to cause problems. */
int priority = -((int)(queue.size()) - i - 1);
priority = item_priority_func(elem->get()->get_data(), priority);