mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
mathlib expo template style
This commit is contained in:
parent
78205b25c9
commit
c56df948ee
@ -42,13 +42,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <platforms/px4_defines.h>
|
||||
#include <stdint.h>
|
||||
|
||||
namespace math
|
||||
{
|
||||
|
||||
// Type-safe signum function
|
||||
template<typename T> int sign(T val)
|
||||
template<typename T>
|
||||
int sign(T val)
|
||||
{
|
||||
return (T(0) < val) - (val < T(0));
|
||||
}
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <platforms/px4_defines.h>
|
||||
#include <stdint.h>
|
||||
|
||||
//this should be defined in stdint.h, but seems to be missing in the ARM toolchain (5.2.0)
|
||||
#ifndef UINT64_C
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user