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.
This commit is contained in:
Sybren A. Stüvel 2020-10-07 12:41:45 +02:00
parent 4a633fae8a
commit 763cd94b6c
1 changed files with 1 additions and 1 deletions

View File

@ -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;