Skip to content
Snippets Groups Projects
Commit 9505fbb4 authored by Christian Engwer's avatar Christian Engwer
Browse files

add missing forward declarations

[[Imported from SVN: r1337]]
parent 38301057
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,15 @@ ...@@ -15,6 +15,15 @@
using namespace Dune; using namespace Dune;
// forward decls
template <class MatrixType>
void testSuperMatrix(MatrixType& matrix);
template <class MatrixType, class X, class Y>
void testMatrix(MatrixType& matrix, X& x, Y& y);
template <class MatrixType, class VectorType>
void testSolve(const MatrixType& matrix);
template <class MatrixType> template <class MatrixType>
void testSuperMatrix(MatrixType& matrix) void testSuperMatrix(MatrixType& matrix)
{ {
......
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