[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53922] trunk/blender/source/blender/ blenlib/BLI_array.h: minor change r53918 was supposed to resolve.

Campbell Barton ideasman42 at gmail.com
Sun Jan 20 12:54:45 CET 2013


Revision: 53922
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53922
Author:   campbellbarton
Date:     2013-01-20 11:54:43 +0000 (Sun, 20 Jan 2013)
Log Message:
-----------
minor change r53918 was supposed to resolve.

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53918

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/BLI_array.h

Modified: trunk/blender/source/blender/blenlib/BLI_array.h
===================================================================
--- trunk/blender/source/blender/blenlib/BLI_array.h	2013-01-20 10:04:11 UTC (rev 53921)
+++ trunk/blender/source/blender/blenlib/BLI_array.h	2013-01-20 11:54:43 UTC (rev 53922)
@@ -96,10 +96,10 @@
 	/* use existing static array or allocate */                               \
 	(LIKELY(_bli_array_totalsize(arr) >= _##arr##_count + num) ?              \
 	 (void)0 /* do nothing */ :                                               \
-	 (_bli_array_grow_func((void **)&(arr), _##arr##_static,                  \
+	 _bli_array_grow_func((void **)&(arr), _##arr##_static,                   \
 	                       sizeof(*arr), _##arr##_count, num,                 \
 	                       "BLI_array." #arr),                                \
-	 (void)0)) /* msvc2008 needs this */                                      \
+	 (void)0)  /* msvc2008 needs this */                                      \
 	),                                                                        \
 	/* increment the array count, all conditions above are accounted for. */  \
 	(_##arr##_count += num))




More information about the Bf-blender-cvs mailing list