mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-28 19:48:31 -04:00
AC_WPNav: replace header guard with pragma once
This commit is contained in:
parent
65680c8b8d
commit
3ae4c222e0
@ -1,6 +1,5 @@
|
||||
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||||
#ifndef AC_CIRCLE_H
|
||||
#define AC_CIRCLE_H
|
||||
#pragma once
|
||||
|
||||
#include <AP_Common/AP_Common.h>
|
||||
#include <AP_Param/AP_Param.h>
|
||||
@ -101,4 +100,3 @@ private:
|
||||
float _angular_vel_max; // maximum velocity in radians/sec
|
||||
float _angular_accel; // angular acceleration in radians/sec/sec
|
||||
};
|
||||
#endif // AC_CIRCLE_H
|
||||
|
@ -1,6 +1,5 @@
|
||||
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||||
#ifndef AC_WPNAV_H
|
||||
#define AC_WPNAV_H
|
||||
#pragma once
|
||||
|
||||
#include <AP_Common/AP_Common.h>
|
||||
#include <AP_Param/AP_Param.h>
|
||||
@ -321,4 +320,3 @@ protected:
|
||||
float _spline_vel_scaler; //
|
||||
float _yaw; // heading according to yaw
|
||||
};
|
||||
#endif // AC_WPNAV_H
|
||||
|
Loading…
Reference in New Issue
Block a user