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-07-13 13:51:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-13 13:51:24 +0300
commit71b4a1687ec693df7cf3dc77e80d097b741ac109 (patch)
tree775df6d5850862de93a5d9bd9154790214991db7
parent25c2875e0f2cda224e82bf7339b85ea162e5d565 (diff)
Cleanup: clang-tidy, comments
-rw-r--r--source/blender/blenkernel/intern/action_test.cc36
1 files changed, 18 insertions, 18 deletions
diff --git a/source/blender/blenkernel/intern/action_test.cc b/source/blender/blenkernel/intern/action_test.cc
index cd8751ec358..c02eca966ad 100644
--- a/source/blender/blenkernel/intern/action_test.cc
+++ b/source/blender/blenkernel/intern/action_test.cc
@@ -30,16 +30,16 @@ namespace blender::bke::tests {
TEST(action_groups, ReconstructGroupsWithReordering)
{
- // Construct an Action with three groups.
- bAction action = {0};
- FCurve groupAcurve1 = {0};
- FCurve groupAcurve2 = {0};
- FCurve groupBcurve1 = {0};
- FCurve groupBcurve2 = {0};
- FCurve groupBcurve3 = {0};
- // Group C has no curves intentionally.
- FCurve groupDcurve1 = {0};
- FCurve groupDcurve2 = {0};
+ /* Construct an Action with three groups. */
+ bAction action = {{nullptr}};
+ FCurve groupAcurve1 = {nullptr};
+ FCurve groupAcurve2 = {nullptr};
+ FCurve groupBcurve1 = {nullptr};
+ FCurve groupBcurve2 = {nullptr};
+ FCurve groupBcurve3 = {nullptr};
+ /* Group C has no curves intentionally. */
+ FCurve groupDcurve1 = {nullptr};
+ FCurve groupDcurve2 = {nullptr};
groupAcurve1.rna_path = (char *)"groupAcurve1";
groupAcurve2.rna_path = (char *)"groupAcurve2";
@@ -54,18 +54,18 @@ TEST(action_groups, ReconstructGroupsWithReordering)
BLI_addtail(&action.curves, &groupBcurve1);
BLI_addtail(&action.curves, &groupBcurve2);
BLI_addtail(&action.curves, &groupDcurve1);
- BLI_addtail(&action.curves, &groupBcurve3); // <-- The error that should be corrected.
+ BLI_addtail(&action.curves, &groupBcurve3); /* <-- The error that should be corrected. */
BLI_addtail(&action.curves, &groupDcurve2);
- // Introduce another error type, by changing some `prev` pointers.
- groupBcurve1.prev = NULL;
+ /* Introduce another error type, by changing some `prev` pointers. */
+ groupBcurve1.prev = nullptr;
groupBcurve3.prev = &groupBcurve2;
groupDcurve1.prev = &groupBcurve3;
- bActionGroup groupA = {0};
- bActionGroup groupB = {0};
- bActionGroup groupC = {0};
- bActionGroup groupD = {0};
+ bActionGroup groupA = {nullptr};
+ bActionGroup groupB = {nullptr};
+ bActionGroup groupC = {nullptr};
+ bActionGroup groupD = {nullptr};
strcpy(groupA.name, "groupA");
strcpy(groupB.name, "groupB");
strcpy(groupC.name, "groupC");
@@ -87,7 +87,7 @@ TEST(action_groups, ReconstructGroupsWithReordering)
groupA.channels.first = &groupAcurve1;
groupA.channels.last = &groupAcurve2;
groupB.channels.first = &groupBcurve1;
- groupB.channels.last = &groupBcurve3; // The last channel in group B, after group C curve 1.
+ groupB.channels.last = &groupBcurve3; /* The last channel in group B, after group C curve 1. */
groupD.channels.first = &groupDcurve1;
groupD.channels.last = &groupDcurve2;