Skip to content

Commit

Permalink
AP_L1_Control: remove 'class' in front of Location in function declar…
Browse files Browse the repository at this point in the history
…ations

Signed-off-by: Rhys Mainwaring <[email protected]>
  • Loading branch information
srmainwaring committed Mar 13, 2024
1 parent 91a9f78 commit 7a590ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/AP_L1_Control/AP_L1_Control.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class AP_L1_Control : public AP_Navigation {
float turn_distance(float wp_radius) const override;
float turn_distance(float wp_radius, float turn_angle) const override;
float loiter_radius (const float loiter_radius) const override;
void update_waypoint(const class Location &prev_WP, const class Location &next_WP, float dist_min = 0.0f) override;
void update_loiter(const class Location &center_WP, float radius, int8_t loiter_direction) override;
void update_waypoint(const Location &prev_WP, const Location &next_WP, float dist_min = 0.0f) override;
void update_loiter(const Location &center_WP, float radius, int8_t loiter_direction) override;
void update_heading_hold(int32_t navigation_heading_cd) override;
void update_level_flight(void) override;
bool reached_loiter_target(void) override;
Expand Down

0 comments on commit 7a590ee

Please sign in to comment.