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>2021-07-30 15:20:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-30 15:20:31 +0300
commit5aa45c43f278eb78a1f68d947590c43affe42df8 (patch)
tree2aaf30b4fc96bbd36eefd33cfd53dd886e550aff /source/blender/blenlib/BLI_inplace_priority_queue.hh
parent88e774aa34c8ffd90c7bc7e71d3bc290d78b4f2d (diff)
Cleanup: missing leading '*' from comment blocks
Diffstat (limited to 'source/blender/blenlib/BLI_inplace_priority_queue.hh')
-rw-r--r--source/blender/blenlib/BLI_inplace_priority_queue.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_inplace_priority_queue.hh b/source/blender/blenlib/BLI_inplace_priority_queue.hh
index e76cb8504a3..f0f0dd9b517 100644
--- a/source/blender/blenlib/BLI_inplace_priority_queue.hh
+++ b/source/blender/blenlib/BLI_inplace_priority_queue.hh
@@ -33,8 +33,8 @@ namespace blender {
template<
/* Type of the elements in the underlying array. */
typename T,
- /* Binary function that takes two `const T &` inputs and returns true, when the first input has
- greater priority than the second. */
+ /* Binary function that takes two `const T &` inputs and returns true,
+ * when the first input has greater priority than the second. */
typename FirstHasHigherPriority = std::greater<T>>
class InplacePriorityQueue {
private: