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>2020-10-07 13:41:45 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-10-07 13:41:55 +0300
commit763cd94b6c5917c6d383fa9f92b9f059e63642d7 (patch)
tree6c57054574be09d6489706b4e46975230beee9a8 /source/blender/io
parent4a633fae8a04a72e0e0bd1f9a5b4d9b147814d11 (diff)
Cleanup: Alembic, fix compiler warning about missing declaration
Mark the `has_animated_geom_params()` function as `static`, as it's only used in that particular compilation unit. No functional changes.
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/alembic/intern/abc_reader_mesh.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/alembic/intern/abc_reader_mesh.cc b/source/blender/io/alembic/intern/abc_reader_mesh.cc
index 93e4c7b154a..b7fcdbc2087 100644
--- a/source/blender/io/alembic/intern/abc_reader_mesh.cc
+++ b/source/blender/io/alembic/intern/abc_reader_mesh.cc
@@ -508,7 +508,7 @@ bool is_valid_animated(const ICompoundProperty arbGeomParams, const PropertyHead
return geom_param.valid() && !geom_param.isConstant();
}
-bool has_animated_geom_params(const ICompoundProperty arbGeomParams)
+static bool has_animated_geom_params(const ICompoundProperty arbGeomParams)
{
if (!arbGeomParams.valid()) {
return false;