From 850d0bc588af79186286652af4c8293daafd2c4c Mon Sep 17 00:00:00 2001 From: Silvan Fuhrer Date: Mon, 4 Jan 2021 13:25:01 +0100 Subject: [PATCH] vtol_type: remvoe const from function declaration Signed-off-by: Silvan Fuhrer --- src/modules/vtol_att_control/vtol_type.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/vtol_att_control/vtol_type.h b/src/modules/vtol_att_control/vtol_type.h index 902611a79b..355fe534fb 100644 --- a/src/modules/vtol_att_control/vtol_type.h +++ b/src/modules/vtol_att_control/vtol_type.h @@ -261,11 +261,11 @@ protected: */ bool set_idle_fw(); - void set_all_motor_state(const motor_state target_state, const int value = 0); + void set_all_motor_state(motor_state target_state, int value = 0); - void set_main_motor_state(const motor_state target_state, const int value = 0); + void set_main_motor_state(motor_state target_state, int value = 0); - void set_alternate_motor_state(const motor_state target_state, const int value = 0); + void set_alternate_motor_state(motor_state target_state, int value = 0); float update_and_get_backtransition_pitch_sp();