[Bf-blender-cvs] [c4f48e240ec] sculpt-dev: Sculpt-dev: Fix incorrect static function forward prototype.

Joseph Eagar noreply at git.blender.org
Mon Apr 18 21:52:55 CEST 2022


Commit: c4f48e240ec943b1033b9a9b83b0c1ac8e6ace15
Author: Joseph Eagar
Date:   Mon Apr 18 12:52:35 2022 -0700
Branches: sculpt-dev
https://developer.blender.org/rBc4f48e240ec943b1033b9a9b83b0c1ac8e6ace15

Sculpt-dev: Fix incorrect static function forward prototype.

===================================================================

M	source/blender/editors/sculpt_paint/sculpt_undo.c

===================================================================

diff --git a/source/blender/editors/sculpt_paint/sculpt_undo.c b/source/blender/editors/sculpt_paint/sculpt_undo.c
index 469fee90584..0dbca8eafdf 100644
--- a/source/blender/editors/sculpt_paint/sculpt_undo.c
+++ b/source/blender/editors/sculpt_paint/sculpt_undo.c
@@ -143,7 +143,8 @@ static void update_unode_bmesh_memsize(SculptUndoNode *unode);
 static UndoSculpt *sculpt_undo_get_nodes(void);
 void sculpt_undo_print_nodes(void *active);
 static bool check_first_undo_entry_dyntopo(Object *ob);
-void sculpt_undo_push_begin_ex(Object *ob, const char *name, bool no_first_entry_check);
+static void sculpt_undo_push_begin_ex(Object *ob, const char *name, bool no_first_entry_check);
+
 static void update_cb(PBVHNode *node, void *rebuild)
 {
   BKE_pbvh_node_mark_update(node);



More information about the Bf-blender-cvs mailing list