remove unnecessary <cmath> include

This commit is contained in:
Daniel Agar 2019-11-22 11:16:51 -05:00 committed by GitHub
parent 33a2bd0292
commit 362a2dfa08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

2
ecl.h
View File

@ -96,5 +96,5 @@ using ecl_abstime = uint64_t;
#endif /* PX4_POSIX || PX4_NUTTX */
#include <cmath>
#include <math.h>
#define ISFINITE(x) __builtin_isfinite(x)

View File

@ -32,7 +32,7 @@
****************************************************************************/
#include <gtest/gtest.h>
#include <cmath>
#include <math.h>
#include "EKF/ekf.h"
class EkfInitializationTest : public ::testing::Test {

View File

@ -32,7 +32,7 @@
****************************************************************************/
#include <gtest/gtest.h>
#include <cmath>
#include <math.h>
#include "EKF/ekf.h"
class EkfSamplingTestParametrized : public ::testing::TestWithParam<std::tuple<float,float>>

View File

@ -32,7 +32,7 @@
****************************************************************************/
#include <gtest/gtest.h>
#include <cmath>
#include <math.h>
#include "EKF/ekf.h"
struct sample {

View File

@ -32,7 +32,7 @@
****************************************************************************/
#include <gtest/gtest.h>
#include <cmath>
#include <math.h>
#include "EKF/ekf.h"
class EkfImuSamplingTestParametrized : public ::testing::TestWithParam<std::tuple<float,float>>

View File

@ -41,7 +41,7 @@
#pragma once
#include <cmath>
#include <math.h>
#include <stdint.h>
class DataValidator