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>2021-08-31 06:36:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-31 07:33:57 +0300
commitd718d6b4493429a1e688e874fd76963f98e3d034 (patch)
treeefc5d34c087b6306571f469eeaf727d9e98d5234 /source/blender/blenkernel/intern/armature_test.cc
parent29590eec6e21a4e1a2d45221e6dbb5733c354969 (diff)
Cleanup: Use C style comments for descriptive text
Diffstat (limited to 'source/blender/blenkernel/intern/armature_test.cc')
-rw-r--r--source/blender/blenkernel/intern/armature_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/armature_test.cc b/source/blender/blenkernel/intern/armature_test.cc
index 99eb064d061..2994563175f 100644
--- a/source/blender/blenkernel/intern/armature_test.cc
+++ b/source/blender/blenkernel/intern/armature_test.cc
@@ -176,9 +176,9 @@ class BKE_armature_find_selected_bones_test : public testing::Test {
bone2.childbase = {nullptr, nullptr};
bone3.childbase = {nullptr, nullptr};
- BLI_addtail(&arm.bonebase, &bone1); // bone1 is root bone
- BLI_addtail(&arm.bonebase, &bone2); // bone2 is root bone
- BLI_addtail(&bone2.childbase, &bone3); // bone3 has bone2 as parent
+ BLI_addtail(&arm.bonebase, &bone1); /* bone1 is root bone. */
+ BLI_addtail(&arm.bonebase, &bone2); /* bone2 is root bone. */
+ BLI_addtail(&bone2.childbase, &bone3); /* bone3 has bone2 as parent. */
/* Make sure the armature & its bones are visible, to make them selectable. */
arm.layer = bone1.layer = bone2.layer = bone3.layer = 1;