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 <ideasman42@gmail.com>2012-08-25 21:42:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-25 21:42:15 +0400
commit32e4e0f8737d3441e621b7da4640a6041fa69c01 (patch)
tree64ae8084a76cc61225cc07ecb55934cc55e41a8e /source/blender/bmesh
parentd5fdec6619becffac9c903aba335dd6f47b2c103 (diff)
add conjugate_qt_qt(), also some code cleanup and use const for 'rotOrders' var in math_rotation.c
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_mods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mods.c b/source/blender/bmesh/intern/bmesh_mods.c
index fc270c61113..73e2d83520c 100644
--- a/source/blender/bmesh/intern/bmesh_mods.c
+++ b/source/blender/bmesh/intern/bmesh_mods.c
@@ -174,7 +174,7 @@ int BM_disk_dissolve(BMesh *bm, BMVert *v)
f = BM_faces_join_pair(bm, e->l->f, e->l->radial_next->f, e, TRUE);
/* return if couldn't join faces in manifold
* conditions */
- //!disabled for testing why bad things happen
+ /* !disabled for testing why bad things happen */
if (!f) {
return FALSE;
}