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:
authorSybren A. Stüvel <sybren@blender.org>2019-11-29 18:55:39 +0300
committerSybren A. Stüvel <sybren@blender.org>2019-11-29 18:55:39 +0300
commit56283464b8b4b2df9c42acf1edfd810c026796a4 (patch)
treeae7483e3582b7572de60dc016609727ea444a75b /source/blender/alembic
parent9ea0eb0b950f498b2bda91f137fce7c961eb08f5 (diff)
Cleanup: Alembic: avoid unused parameter warning
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_transform.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_transform.cc b/source/blender/alembic/intern/abc_transform.cc
index 033bd33d781..585d4178e41 100644
--- a/source/blender/alembic/intern/abc_transform.cc
+++ b/source/blender/alembic/intern/abc_transform.cc
@@ -132,7 +132,7 @@ Imath::Box3d AbcTransformWriter::bounds()
return Imath::transform(bounds, m_matrix);
}
-bool AbcTransformWriter::hasAnimation(Object *ob) const
+bool AbcTransformWriter::hasAnimation(Object * /*ob*/) const
{
return true;
}