Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Fix unused parameter warning (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored Jan 8, 2024
1 parent f1b11b9 commit 50d1c5b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ struct fmt::formatter<trajopt::DifferentialCentripetalAccelerationConstraint> {
* @param constraint DifferentialCentripetalAccelerationConstraint instance.
* @param ctx Format string context.
*/
auto format(
const trajopt::DifferentialCentripetalAccelerationConstraint& constraint,
fmt::format_context& ctx) const {
auto format([[maybe_unused]] const trajopt::
DifferentialCentripetalAccelerationConstraint& constraint,
fmt::format_context& ctx) const {
return fmt::format_to(ctx.out(), "diff centrip acceleration bound");
}
};

0 comments on commit 50d1c5b

Please sign in to comment.