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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-03-16 14:14:06 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-03-16 14:15:16 +0300
commit5a664c6e98ce1e3baaf0bd3cdb8316ebf3af5217 (patch)
tree371f58fa0dc9099364f0c636fef606af24c5ec2b /tests/gtests
parent35a29befb3678a684a144e9974c371fa926cb535 (diff)
Fix another implicit cast of boot to int
Use proper comparison to nullptr. It is important to use nullptr since NULL is actually an integer, which leads to another type of warnings.
Diffstat (limited to 'tests/gtests')
-rw-r--r--tests/gtests/blenlib/BLI_polyfill_2d_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_polyfill_2d_test.cc b/tests/gtests/blenlib/BLI_polyfill_2d_test.cc
index 264ed8fadbc..bb9f739a71e 100644
--- a/tests/gtests/blenlib/BLI_polyfill_2d_test.cc
+++ b/tests/gtests/blenlib/BLI_polyfill_2d_test.cc
@@ -111,7 +111,7 @@ static void test_polyfill_topology(const float poly[][2],
const unsigned int v1 = i;
const unsigned int v2 = (i + 1) % poly_tot;
void **p = BLI_edgehash_lookup_p(edgehash, v1, v2);
- EXPECT_EQ((void *)p != NULL, 1);
+ EXPECT_NE((void *)p, nullptr);
EXPECT_EQ((intptr_t)*p, 1);
}