From 8febcedf4b49ce448eb22a3afe995eead9752c84 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Tue, 2 Feb 2016 21:34:16 +0900 Subject: [PATCH] AP_MotorsHeli: remove unnecessary static declaration --- libraries/AP_Motors/AP_MotorsHeli.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Motors/AP_MotorsHeli.h b/libraries/AP_Motors/AP_MotorsHeli.h index ab96e3938f..63f4787959 100644 --- a/libraries/AP_Motors/AP_MotorsHeli.h +++ b/libraries/AP_Motors/AP_MotorsHeli.h @@ -188,7 +188,7 @@ protected: virtual void move_actuators(float roll_out, float pitch_out, float coll_in, float yaw_out) = 0; // reset_swash_servo - free up swash servo for maximum movement - static void reset_swash_servo(RC_Channel& servo); + void reset_swash_servo(RC_Channel& servo); // init_outputs - initialise Servo/PWM ranges and endpoints virtual void init_outputs() = 0;