[Bf-blender-cvs] [45f8d1783ba] blender-v2.83-release: Cleanup: Fix strict compiler warning

Sergey Sharybin noreply at git.blender.org
Wed Apr 22 16:58:16 CEST 2020


Commit: 45f8d1783ba8b4adc32f5c39d95d1bc39c37aa5d
Author: Sergey Sharybin
Date:   Tue Apr 21 12:49:12 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB45f8d1783ba8b4adc32f5c39d95d1bc39c37aa5d

Cleanup: Fix strict compiler warning

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

M	source/blender/blenkernel/intern/fluid.c

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

diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 9709b74516b..a26feb2d06b 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -3846,7 +3846,7 @@ static void BKE_fluid_modifier_processDomain(FluidModifierData *mmd,
   prev_guide = manta_has_guiding(mds->fluid, mmd, prev_frame, guide_parent);
 
   /* Unused for now. */
-  UNUSED_VARS(prev_guide, next_mesh, next_guide);
+  UNUSED_VARS(has_guide, prev_guide, next_mesh, next_guide);
 
   bool with_gdomain;
   with_gdomain = (mds->guide_source == FLUID_DOMAIN_GUIDE_SRC_DOMAIN);



More information about the Bf-blender-cvs mailing list