[Bf-blender-cvs] [aaf4c00f4ab] soc-2021-knife-tools: Cleanup: Cpp style comments to C style

Cian Jinks noreply at git.blender.org
Thu Aug 12 15:12:11 CEST 2021


Commit: aaf4c00f4abc378f2303ee79ae8b0e77a145330b
Author: Cian Jinks
Date:   Thu Aug 12 14:11:49 2021 +0100
Branches: soc-2021-knife-tools
https://developer.blender.org/rBaaf4c00f4abc378f2303ee79ae8b0e77a145330b

Cleanup: Cpp style comments to C style

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

M	source/blender/editors/mesh/editmesh_knife.c

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

diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 300ed44a07d..73880caa92f 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -1390,7 +1390,7 @@ static BMFace *knife_bvh_raycast(KnifeTool_OpData *kcd,
 
   BLI_bvhtree_ray_cast(kcd->bvh.tree, co, dir, radius, &hit, knife_bvh_raycast_cb, kcd);
 
-  // Handle Hit
+  /* Handle Hit */
   if (hit.index != -1 && hit.dist != dist) {
     if (same_object) {
       if (kcd->base_index != kcd->bvh.base_index) {
@@ -1452,7 +1452,7 @@ static BMFace *knife_bvh_raycast_filter(
   kcd->bvh.filter_cb = NULL;
   kcd->bvh.filter_data = NULL;
 
-  // Handle Hit
+  /* Handle Hit */
   if (hit.index != -1 && hit.dist != dist) {
     if (same_object) {
       if (kcd->base_index != kcd->bvh.base_index) {



More information about the Bf-blender-cvs mailing list