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 <campbell@blender.org>2022-03-16 07:19:31 +0300
committerCampbell Barton <campbell@blender.org>2022-03-16 07:30:22 +0300
commit8cfdad99a0edbc70beb266518458199b757497b5 (patch)
treea0da9dfb71d7a234c0ae16e99e5ea325807697c2 /source/blender/render/intern
parent24ada9c96027971e50e9d103c746d674024b6892 (diff)
Cleanup: incorrect comments, use C comments
Diffstat (limited to 'source/blender/render/intern')
-rw-r--r--source/blender/render/intern/render_result.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/render_result.c b/source/blender/render/intern/render_result.c
index a3ba8e2f02b..41c635e8481 100644
--- a/source/blender/render/intern/render_result.c
+++ b/source/blender/render/intern/render_result.c
@@ -663,7 +663,7 @@ static void *ml_addview_cb(void *base, const char *str)
static int order_render_passes(const void *a, const void *b)
{
- // 1 if a is after b
+ /* 1 if `a` is after `b`. */
RenderPass *rpa = (RenderPass *)a;
RenderPass *rpb = (RenderPass *)b;
unsigned int passtype_a = passtype_from_name(rpa->name);