From 2993ffb588a1b75038f049f69078f78badd57820 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 7 Nov 2018 21:59:58 +1100 Subject: [PATCH] AP_HAL_VRBRAIN: add override keyword --- libraries/AP_HAL_VRBRAIN/UARTDriver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_HAL_VRBRAIN/UARTDriver.h b/libraries/AP_HAL_VRBRAIN/UARTDriver.h index a9e3237b6d..8b7c0ea148 100644 --- a/libraries/AP_HAL_VRBRAIN/UARTDriver.h +++ b/libraries/AP_HAL_VRBRAIN/UARTDriver.h @@ -38,7 +38,7 @@ public: } void set_flow_control(enum flow_control flow_control); - enum flow_control get_flow_control(void) { return _flow_control; } + enum flow_control get_flow_control(void) override { return _flow_control; } void configure_parity(uint8_t v); void set_stop_bits(int n);