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:
authorJacques Lucke <jacques@blender.org>2021-03-23 18:56:38 +0300
committerJacques Lucke <jacques@blender.org>2021-03-23 18:56:38 +0300
commit3a68dcb1e61e2be5757b8e7f45fa8a21d5cfb46f (patch)
tree9c27c83352ca165caeee958c49be8f4782e2ad48 /source/blender/blenkernel/intern/attribute_access.cc
parent9a2e623372cbdbffc0daf25427fdf72e1cdb9b51 (diff)
Cleanup: allow looking up size of unsupported domains
There isn't really a reason for not supporting it.
Diffstat (limited to 'source/blender/blenkernel/intern/attribute_access.cc')
-rw-r--r--source/blender/blenkernel/intern/attribute_access.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/attribute_access.cc b/source/blender/blenkernel/intern/attribute_access.cc
index 2ab0b6ce531..6a8ceb467e7 100644
--- a/source/blender/blenkernel/intern/attribute_access.cc
+++ b/source/blender/blenkernel/intern/attribute_access.cc
@@ -703,7 +703,6 @@ bool GeometryComponent::attribute_domain_supported(const AttributeDomain domain)
int GeometryComponent::attribute_domain_size(const AttributeDomain UNUSED(domain)) const
{
- BLI_assert_unreachable();
return 0;
}