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>2020-08-22 15:02:33 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-08-22 15:02:33 +0300
commit7e06208f6a3b743e323246fb02ed47371d054097 (patch)
tree2ec83e8585dcc84197187bd130e5321fb7cf767e /source/blender/blenlib
parent9810cfa1e83f173ccbdc1c3335183f93529838b5 (diff)
Fixed an error and warning on Linux from previous commit.
Diffstat (limited to 'source/blender/blenlib')
-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 ff54ae128a9..178149cbedc 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -1511,7 +1511,7 @@ static Edge find_good_sorting_edge(const Vert *testp,
Edge esort;
const Vector<Edge> &edges = tmtopo.vert_edges(closestp);
for (Edge e : edges) {
- const const Vert *v_other = (e.v0() == closestp) ? e.v1() : e.v0();
+ const Vert *v_other = (e.v0() == closestp) ? e.v1() : e.v0();
const mpq3 &co_other = v_other->co_exact;
mpq3 evec = co_other - co_closest;
/* Get projection of evec onto plane of abscissa and ordinate. */