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>2022-03-09 19:27:08 +0300
committerHans Goudey <h.goudey@me.com>2022-03-09 19:27:08 +0300
commit24c543d4af599ee6f6ae52ab469aa99807753147 (patch)
tree1c64810f9724f9a1bfbce67f317b7af88975a694 /source/blender/geometry/intern/realize_instances.cc
parent115ff08fdb251cf0a656ce729c49ac38d96cd5f9 (diff)
Fix: Add missing break
Diffstat (limited to 'source/blender/geometry/intern/realize_instances.cc')
-rw-r--r--source/blender/geometry/intern/realize_instances.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/geometry/intern/realize_instances.cc b/source/blender/geometry/intern/realize_instances.cc
index 9acabae10ab..94c75e8dbb1 100644
--- a/source/blender/geometry/intern/realize_instances.cc
+++ b/source/blender/geometry/intern/realize_instances.cc
@@ -935,6 +935,7 @@ static void execute_realize_mesh_task(const RealizeInstancesOptions &options,
break;
default:
BLI_assert_unreachable();
+ break;
}
GMutableSpan dst_span = dst_attribute_spans[attribute_index].slice(element_slice);
const CPPType &cpp_type = dst_span.type();