From 076a2eb4ea6722609bd4dca81e529dcccb9d6cc4 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Wed, 1 Sep 2004 13:29:44 +0000 Subject: [PATCH] removed 3 forward declarations's inside of a fuction. They were not needed were for functions that were in the same .c file higher up and I think its sort of a non standard way of doing things. (using prototypes would probably be more inline with the other code but as I mentioned they are not needed and were causing warnings in gcc) Kent --- source/blender/src/buttons_editing.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c index 0c61df8ed2e..fb1bb652be3 100644 --- a/source/blender/src/buttons_editing.c +++ b/source/blender/src/buttons_editing.c @@ -1800,9 +1800,6 @@ static void editing_panel_armature_bones(Object *ob, bArmature *arm) void do_meshbuts(unsigned short event) { - void decimate_faces(void); - void decimate_cancel(void); - void decimate_apply(void); Object *ob; Mesh *me; float fac;