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
path: root/tests
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-07-07 10:01:01 +0300
committerJacques Lucke <jacques@blender.org>2020-07-07 10:01:01 +0300
commit955abbeff285b72dc8759b9e8f12ddedcaaa7999 (patch)
treecfbe76e109320d88ed7b3a5dc31215f7beb9c9da /tests
parente233ee1c1fb167c69afb0c3f8d0c067bd67d2814 (diff)
Fix sign conversion error
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_set_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_set_test.cc b/tests/gtests/blenlib/BLI_set_test.cc
index 7d7ec401a68..7d76e1c565c 100644
--- a/tests/gtests/blenlib/BLI_set_test.cc
+++ b/tests/gtests/blenlib/BLI_set_test.cc
@@ -405,7 +405,7 @@ TEST(set, IntrusiveIntKey)
struct MyKeyType {
uint32_t key;
- uint32_t attached_data;
+ int32_t attached_data;
uint32_t hash() const
{