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
path: root/tests
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-07-03 16:50:19 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-07-03 17:09:19 +0300
commit1fb30758034c2f83862bb7fc5f30a1a4d7b4510b (patch)
tree45292a78802aab402decabe64a3cd7ec227585c6 /tests
parent0900914d96441a05a8b6411eff3b85e3eae578f8 (diff)
Fixed build error on Windows / VS2015
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_kdopbvh_test.cc5
1 files changed, 4 insertions, 1 deletions
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);