Commit: 15f1072ee2e1ff4f0f4c30a9d3a514afa6c371f2
Author: Brecht Van Lommel
Date:   Sat Feb 25 02:35:53 2017 +0100
Branches: master
https://developer.blender.org/rB15f1072ee2e1ff4f0f4c30a9d3a514afa6c371f2

Fix build error with macOS / clang / c++11.

===================================================================

M       intern/cycles/bvh/bvh_build.cpp

===================================================================

diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp
index fcbc50f4f6..517afc7564 100644
--- a/intern/cycles/bvh/bvh_build.cpp
+++ b/intern/cycles/bvh/bvh_build.cpp
@@ -905,12 +905,13 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range,
         *    can not control.
         */
        typedef StackAllocator<256, int> LeafStackAllocator;
+       typedef StackAllocator<256, float2> LeafTimeStackAllocator;
        typedef StackAllocator<256, BVHReference> LeafReferenceStackAllocator;
 
        vector<int, LeafStackAllocator> p_type[PRIMITIVE_NUM_TOTAL];
        vector<int, LeafStackAllocator> p_index[PRIMITIVE_NUM_TOTAL];
        vector<int, LeafStackAllocator> p_object[PRIMITIVE_NUM_TOTAL];
-       vector<float2, LeafStackAllocator> p_time[PRIMITIVE_NUM_TOTAL];
+       vector<float2, LeafTimeStackAllocator> p_time[PRIMITIVE_NUM_TOTAL];
        vector<BVHReference, LeafReferenceStackAllocator> 
p_ref[PRIMITIVE_NUM_TOTAL];
 
        /* TODO(sergey): In theory we should be able to store references. */
@@ -964,7 +965,7 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range,
        vector<int, LeafStackAllocator> local_prim_type,
                                        local_prim_index,
                                        local_prim_object;
-       vector<float2, LeafStackAllocator> local_prim_time;
+       vector<float2, LeafTimeStackAllocator> local_prim_time;
        local_prim_type.resize(num_new_prims);
        local_prim_index.resize(num_new_prims);
        local_prim_object.resize(num_new_prims);

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to