Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / test / bug1213_main.cpp
blob4802c00032f18f39e866cc59711b61036012bcdd
2 // This is a regression unit regarding a weird linking issue with gcc.
4 #include "bug1213.h"
6 int main()
8 return 0;
12 template<typename T, int dim>
13 bool bug1213_2(const Eigen::Matrix<T,dim,1>& )
15 return true;
18 template bool bug1213_2<float,3>(const Eigen::Vector3f&);