From 1d2c70d7615c14b380e00ae993e58cc14376dcf7 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 4 Dec 2020 16:44:22 +0100 Subject: Fix API doc generation. BMesh auto-extracting API info does not support comments inside BMesh operators parameters definition. --- source/blender/bmesh/intern/bmesh_opdefines.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- cgit v1.2.3