From d85e24d3ca767b48bdbb1594b564d30df5777769 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Mon, 26 Oct 2020 11:58:55 -0400 Subject: [PATCH] EKF: Ekf class is final --- EKF/ekf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EKF/ekf.h b/EKF/ekf.h index dd4f9edd2b..e48a72d0f7 100644 --- a/EKF/ekf.h +++ b/EKF/ekf.h @@ -44,7 +44,7 @@ #include "estimator_interface.h" -class Ekf : public EstimatorInterface +class Ekf final : public EstimatorInterface { public: static constexpr uint8_t _k_num_states{24}; ///< number of EKF states