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:
authorHoward Trickey <howard.trickey@gmail.com>2021-06-06 00:17:15 +0300
committerHoward Trickey <howard.trickey@gmail.com>2021-06-06 00:17:15 +0300
commitdbfde0fe7038d465cb52e335472199babae6ee4d (patch)
tree8d5cf72ad298bb9c6822080d5070ec24ac2103c0 /source/blender/blenlib/intern/mesh_boolean.cc
parent8e43ef5f318690d4924bd0861f5fd37a85999083 (diff)
Exact Boolean: fix last commit: pass an arg by reference instead of value.
Diffstat (limited to 'source/blender/blenlib/intern/mesh_boolean.cc')
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index 2b286de5120..25aeae519c1 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -1863,7 +1863,7 @@ static Vector<ComponentContainer> find_component_containers(int comp,
const IMesh &tm,
const PatchesInfo &pinfo,
const TriMeshTopology &tmtopo,
- Array<BoundingBox> comp_bb,
+ Array<BoundingBox> &comp_bb,
IMeshArena *arena)
{
constexpr int dbg_level = 0;