From a80278a1912c129d6176743a1540d9c918a29f51 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 18 Dec 2013 05:07:49 +1100 Subject: [PATCH] Code Cleanup: comment unused functions --- source/blender/blenkernel/intern/implicit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/implicit.c b/source/blender/blenkernel/intern/implicit.c index fce6ed9d6c6..ef21c3fdb24 100644 --- a/source/blender/blenkernel/intern/implicit.c +++ b/source/blender/blenkernel/intern/implicit.c @@ -172,7 +172,7 @@ DO_INLINE void mul_fvectorT_fvectorS(float to[3][3], float vectorA[3], float vec mul_fvector_S(to[2], to[2], aS); } - +#if 0 /* printf vector[3] on console: for debug output */ static void print_fvector(float m3[3]) { @@ -190,6 +190,8 @@ DO_INLINE void print_lfvector(float (*fLongVector)[3], unsigned int verts) print_fvector(fLongVector[i]); } } +#endif + /* create long vector */ DO_INLINE lfVector *create_lfvector(unsigned int verts) {