[Bf-blender-cvs] [1d2c70d7615] master: Fix API doc generation.

Bastien Montagne noreply at git.blender.org
Fri Dec 4 16:45:16 CET 2020


Commit: 1d2c70d7615c14b380e00ae993e58cc14376dcf7
Author: Bastien Montagne
Date:   Fri Dec 4 16:44:22 2020 +0100
Branches: master
https://developer.blender.org/rB1d2c70d7615c14b380e00ae993e58cc14376dcf7

Fix API doc generation.

BMesh auto-extracting API info does not support comments inside BMesh
operators parameters definition.

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

M	source/blender/bmesh/intern/bmesh_opdefines.c

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

diff --git a/source/blender/bmesh/intern/bmesh_opdefines.c b/source/blender/bmesh/intern/bmesh_opdefines.c
index cf58dfc684e..4ce70e7bd5a 100644
--- a/source/blender/bmesh/intern/bmesh_opdefines.c
+++ b/source/blender/bmesh/intern/bmesh_opdefines.c
@@ -1787,8 +1787,8 @@ static BMOpDefine bmo_bevel_def = {
    {"spread", BMO_OP_SLOT_FLT},           /* amount to offset beveled edge */
    {"smoothresh", BMO_OP_SLOT_FLT},       /* for passing mesh's smoothresh, used in hardening */
    {"custom_profile", BMO_OP_SLOT_PTR, {(int)BMO_OP_SLOT_SUBTYPE_PTR_STRUCT}}, /* CurveProfile */
-   {"vmesh_method", BMO_OP_SLOT_INT, {(int)BMO_OP_SLOT_SUBTYPE_INT_ENUM}, /* the method to use to create meshes at intersections */
-    bmo_enum_bevel_vmesh_method},
+   {"vmesh_method", BMO_OP_SLOT_INT, {(int)BMO_OP_SLOT_SUBTYPE_INT_ENUM},
+    bmo_enum_bevel_vmesh_method},         /* The method to use to create meshes at intersections. */
    {{'\0'}},
   },
   /* slots_out */



More information about the Bf-blender-cvs mailing list