AHRS: fixup for ARM compiler

This commit is contained in:
Andrew Tridgell 2013-01-02 12:51:10 +11:00
parent d55acbc00a
commit 1b0670e67c
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ protected:
Vector3f _accel_ef; Vector3f _accel_ef;
// acceleration due to gravity in m/s/s // acceleration due to gravity in m/s/s
static const float _gravity = 9.80665; static constexpr float _gravity = 9.80665;
}; };