[Bf-blender-cvs] [3fe5c0e5df8] master: Fluid: Cleanup unused variables

Sebastián Barschkis noreply at git.blender.org
Tue Jul 21 14:40:28 CEST 2020


Commit: 3fe5c0e5df8191053148b4605c476b555795ee16
Author: Sebastián Barschkis
Date:   Tue Jul 21 14:38:06 2020 +0200
Branches: master
https://developer.blender.org/rB3fe5c0e5df8191053148b4605c476b555795ee16

Fluid: Cleanup unused variables

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

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

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

diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index 5086145c0ff..286da4977e3 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -3817,9 +3817,8 @@ static void BKE_fluid_modifier_processDomain(FluidModifierData *fmd,
   floater = fds->particle_type & FLUID_DOMAIN_PARTICLE_FOAM;
 
   bool with_resumable_cache = fds->flags & FLUID_DOMAIN_USE_RESUMABLE_CACHE;
-  bool with_script, with_adaptive, with_noise, with_mesh, with_particles, with_guide;
+  bool with_script, with_noise, with_mesh, with_particles, with_guide;
   with_script = fds->flags & FLUID_DOMAIN_EXPORT_MANTA_SCRIPT;
-  with_adaptive = fds->flags & FLUID_DOMAIN_USE_ADAPTIVE_DOMAIN;
   with_noise = fds->flags & FLUID_DOMAIN_USE_NOISE;
   with_mesh = fds->flags & FLUID_DOMAIN_USE_MESH;
   with_guide = fds->flags & FLUID_DOMAIN_USE_GUIDE;



More information about the Bf-blender-cvs mailing list