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:
authorAnkit Meel <ankitjmeel@gmail.com>2021-10-14 07:36:16 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-10-14 07:36:16 +0300
commit5fec6eda551470d320dd2ab586e13dcc06de1d2f (patch)
tree6ed6a1821161229c88ffad5883cb37f840a84f79 /source/blender/blenlib/intern/uuid.cc
parenta059d16f65c50fe8200fa4f730da42a86cda92d0 (diff)
Cleanup: silence Clang missing-braces warning.
Diffstat (limited to 'source/blender/blenlib/intern/uuid.cc')
-rw-r--r--source/blender/blenlib/intern/uuid.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/uuid.cc b/source/blender/blenlib/intern/uuid.cc
index 3c86238036c..de4602bf3ed 100644
--- a/source/blender/blenlib/intern/uuid.cc
+++ b/source/blender/blenlib/intern/uuid.cc
@@ -83,7 +83,7 @@ bUUID BLI_uuid_generate_random()
bUUID BLI_uuid_nil(void)
{
- const bUUID nil = {0, 0, 0, 0, 0, 0};
+ const bUUID nil = {0, 0, 0, 0, 0, {0}};
return nil;
}