mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
14 lines
298 B
C++
14 lines
298 B
C++
// dummy code to instantiate all templates for coverage
|
|
|
|
#include <Matrix.hpp>
|
|
#include <Vector.hpp>
|
|
#include <Vector3.hpp>
|
|
#include <Euler.hpp>
|
|
#include <Scalar.hpp>
|
|
#include <Quaternion.hpp>
|
|
|
|
template Vector<float, 2>;
|
|
template Euler<float>;
|
|
template Scalar<float>;
|
|
template Matrix<float, 3, 3>;
|