Clang-format tests, examples, libraries, benchmarks, etc.

This commit is contained in:
Antonio Sánchez
2023-12-05 21:22:55 +00:00
committed by Rasmus Munk Larsen
parent 3252ecc7a4
commit 46e9cdb7fe
876 changed files with 33453 additions and 37795 deletions

View File

@@ -3,16 +3,11 @@
#include "bug1213.h"
int main()
{
return 0;
}
int main() { return 0; }
template<typename T, int dim>
bool bug1213_2(const Eigen::Matrix<T,dim,1>& )
{
template <typename T, int dim>
bool bug1213_2(const Eigen::Matrix<T, dim, 1>&) {
return true;
}
template bool bug1213_2<float,3>(const Eigen::Vector3f&);
template bool bug1213_2<float, 3>(const Eigen::Vector3f&);