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/nodes/shader/nodes/node_shader_vector_math.cc
parent433fb9326ece7b0b84f2f548e43059881cca68b5 (diff)
Cleanup: use BLI_assert_unreachable in some places
Diffstat (limited to 'source/blender/nodes/shader/nodes/node_shader_vector_math.cc')
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_vector_math.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/shader/nodes/node_shader_vector_math.cc b/source/blender/nodes/shader/nodes/node_shader_vector_math.cc
index becc83dd694..3a9822fbc8e 100644
--- a/source/blender/nodes/shader/nodes/node_shader_vector_math.cc
+++ b/source/blender/nodes/shader/nodes/node_shader_vector_math.cc
@@ -285,7 +285,7 @@ static const blender::fn::MultiFunction &get_multi_function(
return builder.get_not_implemented_fn();
}
default:
- BLI_assert(false);
+ BLI_assert_unreachable();
return builder.get_not_implemented_fn();
};
}