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-06-23 04:58:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-23 05:04:19 +0300
commit2c916c97ac744f5ef6ba35a6f7db68e96c4fbabc (patch)
treeb4330ba48c01527c4550fca287dc4ad362bbaa43 /source/blender
parent0f427f4eb1c43b2e2336991de27f8985a4e0e824 (diff)
Cleanup: clang-tidy quiet equals-default, nullptr warnings
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/tests/BLI_math_time_test.cc6
-rw-r--r--source/blender/blenlib/tests/BLI_string_test.cc12
2 files changed, 6 insertions, 12 deletions
diff --git a/source/blender/blenlib/tests/BLI_math_time_test.cc b/source/blender/blenlib/tests/BLI_math_time_test.cc
index 4743c11b95f..61a504ac2d7 100644
--- a/source/blender/blenlib/tests/BLI_math_time_test.cc
+++ b/source/blender/blenlib/tests/BLI_math_time_test.cc
@@ -20,15 +20,15 @@ TEST(math_time, SecondsExplode)
EXPECT_NEAR(9.0, r_seconds, epsilon);
EXPECT_NEAR(369.0, r_milliseconds, epsilon);
- BLI_math_time_seconds_decompose(seconds, NULL, &r_hours, &r_minutes, &r_seconds, NULL);
+ BLI_math_time_seconds_decompose(seconds, nullptr, &r_hours, &r_minutes, &r_seconds, nullptr);
EXPECT_NEAR(61.0, r_hours, epsilon);
EXPECT_NEAR(33.0, r_minutes, epsilon);
EXPECT_NEAR(9.369, r_seconds, epsilon);
- BLI_math_time_seconds_decompose(seconds, NULL, NULL, NULL, &r_seconds, NULL);
+ BLI_math_time_seconds_decompose(seconds, nullptr, nullptr, nullptr, &r_seconds, nullptr);
EXPECT_NEAR(seconds, r_seconds, epsilon);
- BLI_math_time_seconds_decompose(seconds, &r_days, NULL, &r_minutes, NULL, &r_milliseconds);
+ BLI_math_time_seconds_decompose(seconds, &r_days, nullptr, &r_minutes, nullptr, &r_milliseconds);
EXPECT_NEAR(2.0, r_days, epsilon);
EXPECT_NEAR(813.0, r_minutes, epsilon);
EXPECT_NEAR(9369.0, r_milliseconds, epsilon);
diff --git a/source/blender/blenlib/tests/BLI_string_test.cc b/source/blender/blenlib/tests/BLI_string_test.cc
index 281b7103b75..0b68ee8b93c 100644
--- a/source/blender/blenlib/tests/BLI_string_test.cc
+++ b/source/blender/blenlib/tests/BLI_string_test.cc
@@ -421,9 +421,7 @@ TEST(string, StrFormatByteUnits)
}
struct WordInfo {
- WordInfo()
- {
- }
+ WordInfo() = default;
WordInfo(int start, int end) : start(start), end(end)
{
}
@@ -441,9 +439,7 @@ static std::ostream &operator<<(std::ostream &os, const WordInfo &word_info)
class StringFindSplitWords : public testing::Test {
protected:
- StringFindSplitWords()
- {
- }
+ StringFindSplitWords() = default;
/* If max_words is -1 it will be initialized from the number of expected
* words +1. This way there is no need to pass an explicit number of words,
@@ -807,9 +803,7 @@ TEST_F(StringCasecmpNatural, TextAndNumbers)
class StringEscape : public testing::Test {
protected:
- StringEscape()
- {
- }
+ StringEscape() = default;
using CompareWordsArray = vector<std::array<const char *, 2>>;