From 3a22f3e391ce1dbe25e7f48bb7569f83f644f167 Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Sat, 20 Jul 2024 03:44:49 +0200 Subject: [PATCH] Fix: Linux build error in previous commit Faulty commit is 9c79acf9b Pull Request: https://projects.blender.org/blender/blender/pulls/125119 --- source/blender/editors/sculpt_paint/sculpt.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/sculpt_paint/sculpt.cc b/source/blender/editors/sculpt_paint/sculpt.cc index 2d43d830ac3..70274eeefcb 100644 --- a/source/blender/editors/sculpt_paint/sculpt.cc +++ b/source/blender/editors/sculpt_paint/sculpt.cc @@ -946,6 +946,8 @@ bool vert_is_boundary(const Span /*hide_poly*/, case SUBDIV_CCG_ADJACENT_NONE: return false; } + BLI_assert_unreachable(); + return false; } bool vert_is_boundary(BMVert *vert)