From c440d98897ea7849a1644a7a3c1a666b3388a2f1 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Sat, 21 Mar 2020 23:15:15 +1100 Subject: [PATCH] AP_AHRS: tidy available-AHRS-types enumeration --- libraries/AP_AHRS/AP_AHRS.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/AP_AHRS/AP_AHRS.h b/libraries/AP_AHRS/AP_AHRS.h index 3ac55c7b5f..8244fcbb43 100644 --- a/libraries/AP_AHRS/AP_AHRS.h +++ b/libraries/AP_AHRS/AP_AHRS.h @@ -633,18 +633,18 @@ private: AP_Int8 _gps_minsats; enum class EKFType { - NONE = 0 + NONE = 0, #if HAL_NAVEKF3_AVAILABLE - ,THREE = 3 + THREE = 3, #endif #if HAL_NAVEKF2_AVAILABLE - ,TWO = 2 + TWO = 2, #endif #if AP_AHRS_SIM_ENABLED - ,SIM = 10 + SIM = 10, #endif #if HAL_EXTERNAL_AHRS_ENABLED - ,EXTERNAL = 11 + EXTERNAL = 11, #endif }; EKFType active_EKF_type(void) const;