[Bf-blender-cvs] [b17ad27adcc] master: Silence an unused variable warning in bmesh_bevel.c.

Howard Trickey noreply at git.blender.org
Mon Oct 19 12:57:26 CEST 2020


Commit: b17ad27adcc016f75329c73849468a4585804fcf
Author: Howard Trickey
Date:   Mon Oct 19 06:53:52 2020 -0400
Branches: master
https://developer.blender.org/rBb17ad27adcc016f75329c73849468a4585804fcf

Silence an unused variable warning in bmesh_bevel.c.

===================================================================

M	source/blender/bmesh/tools/bmesh_bevel.c

===================================================================

diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 3b32298426a..f54db513d0f 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -1178,6 +1178,7 @@ static bool edge_edge_angle_less_than_180(const BMEdge *e1, const BMEdge *e2, co
   }
   else {
     BLI_assert(false);
+    return false;
   }
   sub_v3_v3v3(dir1, v1->co, v->co);
   sub_v3_v3v3(dir2, v2->co, v->co);



More information about the Bf-blender-cvs mailing list