mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-28 05:40:36 +08:00
clang-tidy trivial cleanup
This commit is contained in:
+3
-6
@@ -1,12 +1,8 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include <matrix/math.hpp>
|
||||
#include "test_macros.hpp"
|
||||
|
||||
using namespace matrix;
|
||||
#include <matrix/math.hpp>
|
||||
|
||||
template class Matrix<float, 2, 3>;
|
||||
template class Matrix<float, 3, 2>;
|
||||
using matrix::Matrix;
|
||||
|
||||
int main()
|
||||
{
|
||||
@@ -16,6 +12,7 @@ int main()
|
||||
float data_check[6] = {1, 4, 2, 5, 3, 6};
|
||||
Matrix<float, 3, 2> A_T_check(data_check);
|
||||
TEST(isEqual(A_T, A_T_check));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user