Cleanup: missing leading '*' from comment blocks

This commit is contained in:
Campbell Barton
2021-07-30 22:20:13 +10:00
parent 88e774aa34
commit 5aa45c43f2
9 changed files with 18 additions and 19 deletions

View File

@@ -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);