From 5fec6eda551470d320dd2ab586e13dcc06de1d2f Mon Sep 17 00:00:00 2001 From: Ankit Meel Date: Thu, 14 Oct 2021 10:06:16 +0530 Subject: Cleanup: silence Clang missing-braces warning. --- source/blender/blenlib/intern/uuid.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3