Commit: d0522d4ef15fa8ee21527404a4b0f7a5423a4027
Author: Hans Goudey
Date:   Fri Nov 11 19:05:22 2022 -0600
Branches: master
https://developer.blender.org/rBd0522d4ef15fa8ee21527404a4b0f7a5423a4027

Cleanup: Remove unnecessary struct keywords

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

M       source/blender/blenkernel/intern/mesh_normals.cc

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

diff --git a/source/blender/blenkernel/intern/mesh_normals.cc 
b/source/blender/blenkernel/intern/mesh_normals.cc
index ebb5a72d137..ddc8af99fc5 100644
--- a/source/blender/blenkernel/intern/mesh_normals.cc
+++ b/source/blender/blenkernel/intern/mesh_normals.cc
@@ -442,7 +442,7 @@ void BKE_mesh_ensure_normals_for_display(Mesh *mesh)
       BKE_mesh_poly_normals_ensure(mesh);
       break;
     case ME_WRAPPER_TYPE_BMESH: {
-      struct BMEditMesh *em = mesh->edit_mesh;
+      BMEditMesh *em = mesh->edit_mesh;
       EditMeshData *emd = mesh->runtime->edit_data;
       if (emd->vertexCos) {
         BKE_editmesh_cache_ensure_vert_normals(em, emd);
@@ -939,13 +939,13 @@ static void mesh_edges_sharp_tag(LoopSplitTaskDataCommon 
*data,
   }
 }
 
-void BKE_edges_sharp_from_angle_set(const struct MVert *mverts,
+void BKE_edges_sharp_from_angle_set(const MVert *mverts,
                                     const int /*numVerts*/,
-                                    struct MEdge *medges,
+                                    MEdge *medges,
                                     const int numEdges,
-                                    const struct MLoop *mloops,
+                                    const MLoop *mloops,
                                     const int numLoops,
-                                    const struct MPoly *mpolys,
+                                    const MPoly *mpolys,
                                     const float (*polynors)[3],
                                     const int numPolys,
                                     const float split_angle)

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to