From 763cd94b6c5917c6d383fa9f92b9f059e63642d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 7 Oct 2020 12:41:45 +0200 Subject: 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. --- source/blender/io/alembic/intern/abc_reader_mesh.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/io') 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; -- cgit v1.2.3