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:49:47 +0300
committerJacques Lucke <jacques@blender.org>2021-03-23 18:49:47 +0300
commit9a2e623372cbdbffc0daf25427fdf72e1cdb9b51 (patch)
tree32f5d3711deab2632d94e7a816170d5b43f8cc1d /source/blender/blenkernel/BKE_attribute_math.hh
parent433fb9326ece7b0b84f2f548e43059881cca68b5 (diff)
Cleanup: use BLI_assert_unreachable in some places
Diffstat (limited to 'source/blender/blenkernel/BKE_attribute_math.hh')
-rw-r--r--source/blender/blenkernel/BKE_attribute_math.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_attribute_math.hh b/source/blender/blenkernel/BKE_attribute_math.hh
index 0294a8c09d5..16fc0db60fb 100644
--- a/source/blender/blenkernel/BKE_attribute_math.hh
+++ b/source/blender/blenkernel/BKE_attribute_math.hh
@@ -49,7 +49,7 @@ void convert_to_static_type(const CustomDataType data_type, const Func &func)
func(Color4f());
break;
default:
- BLI_assert(false);
+ BLI_assert_unreachable();
break;
}
}