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:
authorJacques Lucke <jacques@blender.org>2020-04-27 14:35:15 +0300
committerJacques Lucke <jacques@blender.org>2020-04-27 14:35:15 +0300
commit9973f752b4177f90764ad3e7cef8d26dd233132f (patch)
tree208f45b425753e865fd4fd09bed3cd7b33a66861 /source/blender
parent1cb2f3a1c15ab422ae2f68ba74aa3d9094df2fff (diff)
quiet warning
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/simulation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/simulation.cc b/source/blender/blenkernel/intern/simulation.cc
index c227ecb8778..ee82e0eba56 100644
--- a/source/blender/blenkernel/intern/simulation.cc
+++ b/source/blender/blenkernel/intern/simulation.cc
@@ -112,7 +112,7 @@ IDTypeInfo IDType_ID_SIM = {
/* make_local */ nullptr,
};
-void BKE_simulation_data_update(Depsgraph *depsgraph, Scene *scene)
+void BKE_simulation_data_update(Depsgraph *UNUSED(depsgraph), Scene *scene)
{
printf("Eval simulation: %d + %f\n", scene->r.cfra, scene->r.subframe);
}