[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44030] branches/bmesh/blender/source/ blender: fix for missing include in last commit + some minor cleanup.

Campbell Barton ideasman42 at gmail.com
Sat Feb 11 11:24:56 CET 2012


Revision: 44030
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44030
Author:   campbellbarton
Date:     2012-02-11 10:24:48 +0000 (Sat, 11 Feb 2012)
Log Message:
-----------
fix for missing include in last commit + some minor cleanup.

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/blenkernel/intern/modifiers_bmesh.c
    branches/bmesh/blender/source/blender/bmesh/intern/bmesh_construct.c
    branches/bmesh/blender/source/blender/bmesh/intern/bmesh_mods.c
    branches/bmesh/blender/source/blender/bmesh/intern/bmesh_walkers_impl.c
    branches/bmesh/blender/source/blender/bmesh/operators/bevel.c

Modified: branches/bmesh/blender/source/blender/blenkernel/intern/modifiers_bmesh.c
===================================================================
--- branches/bmesh/blender/source/blender/blenkernel/intern/modifiers_bmesh.c	2012-02-11 10:15:11 UTC (rev 44029)
+++ branches/bmesh/blender/source/blender/blenkernel/intern/modifiers_bmesh.c	2012-02-11 10:24:48 UTC (rev 44030)
@@ -28,13 +28,7 @@
  *
  */
 
-#include "string.h"
-#include "stdarg.h"
-#include "math.h"
-#include "float.h"
-#include "ctype.h"
 
-#include "BLI_utildefines.h"
 #include "BLI_math.h"
 
 #include "MEM_guardedalloc.h"

Modified: branches/bmesh/blender/source/blender/bmesh/intern/bmesh_construct.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/intern/bmesh_construct.c	2012-02-11 10:15:11 UTC (rev 44029)
+++ branches/bmesh/blender/source/blender/bmesh/intern/bmesh_construct.c	2012-02-11 10:24:48 UTC (rev 44030)
@@ -43,7 +43,6 @@
 #include "bmesh.h"
 #include "bmesh_private.h"
 
-
 #define SELECT 1
 
 /* prototypes */

Modified: branches/bmesh/blender/source/blender/bmesh/intern/bmesh_mods.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/intern/bmesh_mods.c	2012-02-11 10:15:11 UTC (rev 44029)
+++ branches/bmesh/blender/source/blender/bmesh/intern/bmesh_mods.c	2012-02-11 10:24:48 UTC (rev 44030)
@@ -34,6 +34,8 @@
 #include "BLI_array.h"
 #include "BLI_smallhash.h"
 
+#include "BKE_customdata.h"
+
 #include "bmesh.h"
 #include "bmesh_private.h"
 

Modified: branches/bmesh/blender/source/blender/bmesh/intern/bmesh_walkers_impl.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/intern/bmesh_walkers_impl.c	2012-02-11 10:15:11 UTC (rev 44029)
+++ branches/bmesh/blender/source/blender/bmesh/intern/bmesh_walkers_impl.c	2012-02-11 10:24:48 UTC (rev 44030)
@@ -26,6 +26,8 @@
  * BMesh Walker Code.
  */
 
+#include "BKE_customdata.h"
+
 #include "bmesh.h"
 #include "bmesh_private.h"
 #include "bmesh_walkers_private.h"

Modified: branches/bmesh/blender/source/blender/bmesh/operators/bevel.c
===================================================================
--- branches/bmesh/blender/source/blender/bmesh/operators/bevel.c	2012-02-11 10:15:11 UTC (rev 44029)
+++ branches/bmesh/blender/source/blender/bmesh/operators/bevel.c	2012-02-11 10:24:48 UTC (rev 44030)
@@ -26,6 +26,8 @@
 #include "BLI_math.h"
 #include "BLI_smallhash.h"
 
+#include "BKE_customdata.h"
+
 #include "bmesh.h"
 
 #define BEVEL_FLAG	1




More information about the Bf-blender-cvs mailing list