[Bf-blender-cvs] [48c93640d22] blender2.8: Cleanup: fix compiler warning.

Brecht Van Lommel noreply at git.blender.org
Tue Jul 3 13:09:03 CEST 2018


Commit: 48c93640d22ec9aea9f429808911dccfbd8a72f3
Author: Brecht Van Lommel
Date:   Tue Jul 3 12:59:02 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB48c93640d22ec9aea9f429808911dccfbd8a72f3

Cleanup: fix compiler warning.

===================================================================

M	source/blender/makesrna/intern/rna_group.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_group.c b/source/blender/makesrna/intern/rna_group.c
index b3afba36a9f..7797de9ad4b 100644
--- a/source/blender/makesrna/intern/rna_group.c
+++ b/source/blender/makesrna/intern/rna_group.c
@@ -116,6 +116,7 @@ static bool rna_Collection_objects_override_apply(
         PointerRNA *ptr_item_dst, PointerRNA *ptr_item_src, PointerRNA *UNUSED(ptr_item_storage),
         IDOverrideStaticPropertyOperation *opop)
 {
+	(void)opop;
 	BLI_assert(opop->operation == IDOVERRIDESTATIC_OP_REPLACE &&
 	           "Unsupported RNA override operation on collections' objects");
 
@@ -199,6 +200,7 @@ static bool rna_Collection_children_override_apply(
         PointerRNA *ptr_item_dst, PointerRNA *ptr_item_src, PointerRNA *UNUSED(ptr_item_storage),
         IDOverrideStaticPropertyOperation *opop)
 {
+	(void)opop;
 	BLI_assert(opop->operation == IDOVERRIDESTATIC_OP_REPLACE &&
 	           "Unsupported RNA override operation on collections' objects");



More information about the Bf-blender-cvs mailing list