From 4f2e5ac98320abeccc2745021e8f6769fa6f3611 Mon Sep 17 00:00:00 2001 From: Frank dellaert Date: Thu, 10 Sep 2020 10:34:14 -0400 Subject: [PATCH] Fix typo --- gtsam/base/numericalDerivative.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gtsam/base/numericalDerivative.h b/gtsam/base/numericalDerivative.h index 831bb6bccb..34ff0327ee 100644 --- a/gtsam/base/numericalDerivative.h +++ b/gtsam/base/numericalDerivative.h @@ -700,9 +700,10 @@ inline typename internal::FixedSizeMatrix::type numericalDerivative65(Y (* * @return m*n Jacobian computed via central differencing */ template -typename internal::FixedSizeMatrix::type numericalDerivative66( - boost::function h, const X1& x1, - const X2& x2, const X3& x3, const X4& x4, const X5& x5, const X6& x6, double delta = 1e-5) { +typename internal::FixedSizeMatrix::type numericalDerivative66( + boost::function h, + const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5, const X6& x6, + double delta = 1e-5) { BOOST_STATIC_ASSERT_MSG( (boost::is_base_of::structure_category>::value), "Template argument Y must be a manifold type."); BOOST_STATIC_ASSERT_MSG( (boost::is_base_of::structure_category>::value),