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");

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to