Skip to content
Snippets Groups Projects
Commit bc41c502 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[eigensolver/eigen] fix headercheck if eigen is missing

parent 03183ac7
No related branches found
No related tags found
No related merge requests found
...@@ -146,14 +146,14 @@ protected: ...@@ -146,14 +146,14 @@ protected:
template <class S> template <class S>
class EigenSolverOptions<EigenDenseMatrix<S>> class EigenSolverOptions<EigenDenseMatrix<S>, true>
{ {
static_assert(AlwaysFalse<S>::value, "You are missing eigen!"); static_assert(AlwaysFalse<S>::value, "You are missing eigen!");
}; };
template <class S> template <class S>
class EigenSolver<EigenDenseMatrix<S>> class EigenSolver<EigenDenseMatrix<S>, true>
{ {
static_assert(AlwaysFalse<S>::value, "You are missing eigen!"); static_assert(AlwaysFalse<S>::value, "You are missing eigen!");
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment