From 1fb30758034c2f83862bb7fc5f30a1a4d7b4510b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 3 Jul 2017 15:50:19 +0200 Subject: Fixed build error on Windows / VS2015 --- tests/gtests/blenlib/BLI_kdopbvh_test.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/gtests') diff --git a/tests/gtests/blenlib/BLI_kdopbvh_test.cc b/tests/gtests/blenlib/BLI_kdopbvh_test.cc index bc8cf58d69d..e713ddc1695 100644 --- a/tests/gtests/blenlib/BLI_kdopbvh_test.cc +++ b/tests/gtests/blenlib/BLI_kdopbvh_test.cc @@ -58,7 +58,10 @@ static void find_nearest_points_test(int points_len, float scale, int round, int { struct RNG *rng = BLI_rng_new(random_seed); BVHTree *tree = BLI_bvhtree_new(points_len, 0.0, 8, 8); - float (*points)[3] = (float (*)[3])MEM_mallocN(sizeof(float[3]) * points_len, __func__); + + void *mem = MEM_mallocN(sizeof(float[3]) * points_len, __func__); + float (*points)[3] = (float (*)[3])mem; + for (int i = 0; i < points_len; i++) { rng_v3_round(points[i], 3, rng, round, scale); BLI_bvhtree_insert(tree, i, points[i], 1); -- cgit v1.2.3