Sub: Update functions argument names to match with cpp

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
This commit is contained in:
Patrick José Pereira 2018-06-28 12:14:43 -03:00 committed by Jacob Walser
parent c5d13847b2
commit e229d46612
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ public:
AP_Arming_Sub(const AP_Arming_Sub &other) = delete;
AP_Arming_Sub &operator=(const AP_Arming_Sub&) = delete;
bool rc_calibration_checks(bool report) override;
bool pre_arm_checks(bool report) override;
bool rc_calibration_checks(bool display_failure) override;
bool pre_arm_checks(bool display_failure) override;
protected:
bool ins_checks(bool report) override;
bool ins_checks(bool display_failure) override;
};