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:
authorCampbell Barton <campbell@blender.org>2022-08-19 06:41:49 +0300
committerCampbell Barton <campbell@blender.org>2022-08-19 06:41:49 +0300
commit97f9015ed0b1a6a3e6247d5958dd50bbcd21d5ca (patch)
tree1d5189df021bfaf5c1edcba0005c751e6095c326 /source/blender/makesrna
parent0491ba09c21a89f3ac32cb93a7800c95aacb0816 (diff)
Cleanup: unused argument warning
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index d1c0b57c58d..384ce8f04fb 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -227,7 +227,7 @@ static void rna_Fluid_parts_create(Main *bmain,
static void rna_Fluid_parts_delete(Main *bmain, PointerRNA *ptr, int ptype)
{
# ifndef WITH_FLUID
- UNUSED_VARS(ptr, ptype);
+ UNUSED_VARS(bmain, ptr, ptype);
# else
Object *ob = (Object *)ptr->owner_id;
BKE_fluid_particle_system_destroy(ob, ptype);