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:
authorJoseph Eagar <joeedh@gmail.com>2022-03-07 11:28:18 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-03-07 11:28:18 +0300
commit781e2124277d38968529af25a5fcbc2793f4bd84 (patch)
tree6ba8c0de49b353bffd0e7df3c63ddf3762987c5f /source/blender/editors/sculpt_paint/sculpt_undo.c
parentba410bb416b931fb09698810f2eabbe882220389 (diff)
temp-sculpt-colors: Cleanup a few comments.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_undo.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_undo.c b/source/blender/editors/sculpt_paint/sculpt_undo.c
index 9ddc582c9a9..8bc532a8429 100644
--- a/source/blender/editors/sculpt_paint/sculpt_undo.c
+++ b/source/blender/editors/sculpt_paint/sculpt_undo.c
@@ -1078,7 +1078,7 @@ static SculptUndoNode *sculpt_undo_alloc_node(Object *ob, PBVHNode *node, Sculpt
usculpt->undo_size += alloc_size;
/* FIXME: Should explain why this is allocated here, to be freed in
- * `SCULPT_undo_push_end_ex(ob)`? */
+ * `SCULPT_undo_push_end_ex()`? */
alloc_size = sizeof(*unode->no) * (size_t)allvert;
unode->no = MEM_callocN(alloc_size, "SculptUndoNode.no");
usculpt->undo_size += alloc_size;