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

[eigen-solver] fix warnings about non-void function without return statement

parent 774e3081
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,7 @@ struct lapack_helper
"https://software.intel.com/en-us/mkl-developer-reference-c-geev "
"and add a corresponding free function like "
"compute_eigenvalues_of_a_real_matrix_using_lapack(...)!");
return std::vector<std::complex<double>>();
}
template <class V, class E>
......
......@@ -36,12 +36,14 @@ class MatrixInverterOptions
{
static_assert(AlwaysFalse<MatrixType>::value,
"Please implement for given MatrixType and add the respective include below!");
return std::vector<std::string>();
}
static Common::Configuration options(const std::string /*type*/ = "")
{
static_assert(AlwaysFalse<MatrixType>::value,
"Please implement for given MatrixType and add the respective include below!");
return Common::Configuration();
}
}; // class MatrixInverterOptions
......
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