Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-08-14 08:18:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-08-14 08:18:37 +0400
commit9142c062e0ec9217ceacfe4d4095d18a2496eacb (patch)
treec738590933718ce597612142d738b353846ef5d9
parent5df2a98984730de73fb62f5e63815c4b86acb4a2 (diff)
Remove MSVC2008 workaround
-rw-r--r--source/blender/blenlib/BLI_array.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_array.h b/source/blender/blenlib/BLI_array.h
index b2f0bd5fb40..0cd64987997 100644
--- a/source/blender/blenlib/BLI_array.h
+++ b/source/blender/blenlib/BLI_array.h
@@ -97,8 +97,7 @@ void _bli_array_grow_func(void **arr_p, const void *arr_static,
(void)0 /* do nothing */ : \
_bli_array_grow_func((void **)&(arr), _##arr##_static, \
sizeof(*(arr)), _##arr##_count, num, \
- "BLI_array." #arr), \
- (void)0) /* msvc2008 needs this */ \
+ "BLI_array." #arr)) \
), \
/* increment the array count, all conditions above are accounted for. */ \
(_##arr##_count += num))