Cleanup: quiet warning for unused pose_propagate_fcurve

This commit is contained in:
Campbell Barton 2023-01-09 17:34:53 +11:00
parent 4546e35c92
commit 0e0139b304
1 changed files with 3 additions and 1 deletions

View File

@ -1794,7 +1794,9 @@ static void propagate_curve_values(ListBase /*tPChanFCurveLink*/ *pflinks,
/**
* Propagate just works along each F-Curve in turn.
*/
static void pose_propagate_fcurve(FCurve *fcu, float start_frame, const float end_frame)
static void UNUSED_FUNCTION(pose_propagate_fcurve)(FCurve *fcu,
float start_frame,
const float end_frame)
{
/* Skip if no keyframes to edit. */
if ((fcu->bezt == NULL) || (fcu->totvert < 2)) {