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:
authorHans Goudey <h.goudey@me.com>2021-12-06 21:47:53 +0300
committerHans Goudey <h.goudey@me.com>2021-12-06 21:47:53 +0300
commit86d520f2689f17a502b26d105d910480c9480bf0 (patch)
treef149d1f3623344763680a03c6ca738272728f64a /source/blender/nodes/geometry
parent9792994311d6268da52208e77d26a1a86c024534 (diff)
Fix: Attempt to fix build error on macOS
Diffstat (limited to 'source/blender/nodes/geometry')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_input_mesh_edge_vertices.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_input_mesh_edge_vertices.cc b/source/blender/nodes/geometry/nodes/node_geo_input_mesh_edge_vertices.cc
index 5ca9ed969c7..44541362c78 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_input_mesh_edge_vertices.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_input_mesh_edge_vertices.cc
@@ -85,7 +85,7 @@ class EdgeVerticesFieldInput final : public GeometryFieldInput {
uint64_t hash() const override
{
- return get_default_hash_2(vertex_, 9872922352);
+ return get_default_hash_2(static_cast<int64_t>(vertex_), 9872922352);
}
bool is_equal_to(const fn::FieldNode &other) const override