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/bmesh/operators
parent4b5195a9d75ac1cef101f902c9866e07e75193bb (diff)
Cleanup: use C++ comments for disabled code
Also ensure space around text in C-comment blocks.
Diffstat (limited to 'source/blender/bmesh/operators')
-rw-r--r--source/blender/bmesh/operators/bmo_smooth_laplacian.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_smooth_laplacian.c b/source/blender/bmesh/operators/bmo_smooth_laplacian.c
index 67ab57fa403..08efe5383a8 100644
--- a/source/blender/bmesh/operators/bmo_smooth_laplacian.c
+++ b/source/blender/bmesh/operators/bmo_smooth_laplacian.c
@@ -37,7 +37,7 @@ struct BLaplacianSystem {
BMOperator *op;
LinearSolver *context;
- /*Data*/
+ /* Data. */
float min_area;
};
typedef struct BLaplacianSystem LaplacianSystem;