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:
authorGermano Cavalcante <germano.costa@ig.com.br>2021-06-15 15:57:57 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-06-15 15:57:57 +0300
commit7c8b9c7a9aceed5186657fb0ac11cb844f16fec6 (patch)
treea71757cc2f6624ab5ce2aa7399963a60d77eb3d5 /source/blender/bmesh/intern/bmesh_mesh_tessellate.c
parent62906cdbea70ede1bff6332ac2978bb15055dd66 (diff)
Fix warning treated as an error
"void' function returning a value".
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh_tessellate.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh_tessellate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh_tessellate.c b/source/blender/bmesh/intern/bmesh_mesh_tessellate.c
index 2f9d5758385..508a86d5807 100644
--- a/source/blender/bmesh/intern/bmesh_mesh_tessellate.c
+++ b/source/blender/bmesh/intern/bmesh_mesh_tessellate.c
@@ -155,14 +155,14 @@ static void mesh_calc_tessellation_for_face(BMLoop *(*looptris)[3],
BMFace *efa,
MemArena **pf_arena_p)
{
- return mesh_calc_tessellation_for_face_impl(looptris, efa, pf_arena_p, false);
+ mesh_calc_tessellation_for_face_impl(looptris, efa, pf_arena_p, false);
}
static void mesh_calc_tessellation_for_face_with_normal(BMLoop *(*looptris)[3],
BMFace *efa,
MemArena **pf_arena_p)
{
- return mesh_calc_tessellation_for_face_impl(looptris, efa, pf_arena_p, true);
+ mesh_calc_tessellation_for_face_impl(looptris, efa, pf_arena_p, true);
}
/**