Cleanup: unused vars

This commit is contained in:
Campbell Barton 2015-06-20 15:17:21 +10:00
parent 2de34ba31d
commit 4addabaed8

@ -209,8 +209,7 @@ static void rna_SmokeModifier_density_grid_get(PointerRNA *ptr, float *values)
BLI_rw_mutex_unlock(sds->fluid_mutex); BLI_rw_mutex_unlock(sds->fluid_mutex);
#else #else
(void)ptr; UNUSED_VARS(ptr, values);
(void)values;
#endif #endif
} }
@ -237,7 +236,7 @@ static void rna_SmokeModifier_velocity_grid_get(PointerRNA *ptr, float *values)
BLI_rw_mutex_unlock(sds->fluid_mutex); BLI_rw_mutex_unlock(sds->fluid_mutex);
#else #else
(void)ptr; UNUSED_VARS(ptr, values);
#endif #endif
} }
@ -263,7 +262,7 @@ static void rna_SmokeModifier_color_grid_get(PointerRNA *ptr, float *values)
BLI_rw_mutex_unlock(sds->fluid_mutex); BLI_rw_mutex_unlock(sds->fluid_mutex);
#else #else
(void)ptr; UNUSED_VARS(ptr, values);
#endif #endif
} }
@ -289,8 +288,7 @@ static void rna_SmokeModifier_flame_grid_get(PointerRNA *ptr, float *values)
BLI_rw_mutex_unlock(sds->fluid_mutex); BLI_rw_mutex_unlock(sds->fluid_mutex);
#else #else
(void)ptr; UNUSED_VARS(ptr, values);
(void)values;
#endif #endif
} }