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:
Diffstat (limited to 'source/blender/blenlib/intern/mesh_boolean.cc')
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index bc12ff1a652..bf70b044d0d 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -97,10 +97,7 @@ class Edge {
uint64_t hash() const
{
- constexpr uint64_t h1 = 33;
- uint64_t v0hash = DefaultHash<int>{}(v_[0]->id);
- uint64_t v1hash = DefaultHash<int>{}(v_[1]->id);
- return v0hash ^ (v1hash * h1);
+ return get_default_hash_2(v_[0]->id, v_[1]->id);
}
};