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:
authorCampbell Barton <campbell@blender.org>2022-04-13 06:46:22 +0300
committerCampbell Barton <campbell@blender.org>2022-04-13 06:47:04 +0300
commit7d3db7a3ae9f3b3039e81138e3d399f1d4f9717f (patch)
treef4ddc62c69b8a30f65abfd173aa81cc4910ffa1d /source/blender/python
parent4b5195a9d75ac1cef101f902c9866e07e75193bb (diff)
Cleanup: use C++ comments for disabled code
Also ensure space around text in C-comment blocks.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 1d9fc32f55b..baa2b0deb71 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -3635,8 +3635,8 @@ void BPy_BM_init_types(void)
BPy_BMLoopSeq_Type.tp_methods = bpy_bmloopseq_methods;
BPy_BMIter_Type.tp_methods = NULL;
- /*BPy_BMElem_Check() uses bpy_bm_elem_hash() to check types.
- * if this changes update the macro */
+ /* #BPy_BMElem_Check() uses #bpy_bm_elem_hash() to check types.
+ * if this changes update the macro. */
BPy_BMesh_Type.tp_hash = bpy_bm_hash;
BPy_BMVert_Type.tp_hash = bpy_bm_elem_hash;
BPy_BMEdge_Type.tp_hash = bpy_bm_elem_hash;