From 8d12c25555ec46d3b43b974a665e62cc0ea73275 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Tue, 25 Feb 2020 20:21:59 +0900 Subject: [PATCH] AP_Vehicle: formatting fixes --- libraries/AP_Vehicle/AP_Vehicle.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/libraries/AP_Vehicle/AP_Vehicle.h b/libraries/AP_Vehicle/AP_Vehicle.h index d256435d7a..e5418bb673 100644 --- a/libraries/AP_Vehicle/AP_Vehicle.h +++ b/libraries/AP_Vehicle/AP_Vehicle.h @@ -229,14 +229,13 @@ protected: private: - static AP_Vehicle *_singleton; - + // delay() callback that processing MAVLink packets static void scheduler_delay_callback(); - // true if vehicle is probably flying - bool likely_flying; - // time when likely_flying last went true - uint32_t _last_flying_ms; + bool likely_flying; // true if vehicle is probably flying + uint32_t _last_flying_ms; // time when likely_flying last went true + + static AP_Vehicle *_singleton; }; namespace AP {