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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-03 13:59:02 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-03 14:08:25 +0300
commit48c93640d22ec9aea9f429808911dccfbd8a72f3 (patch)
tree6761d80f5945a6a4d19fcc134b19ad92c9c2ab79 /source/blender/makesrna/intern/rna_group.c
parentb868e58d9b7cfc1338296b995ddc8c619d28763d (diff)
Cleanup: fix compiler warning.
Diffstat (limited to 'source/blender/makesrna/intern/rna_group.c')
-rw-r--r--source/blender/makesrna/intern/rna_group.c2
1 files changed, 2 insertions, 0 deletions
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");