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

[istl][multitype] add missing includes

parent af33d9f0
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,8 @@
#include <cmath>
#include <iostream>
#include <tuple>
#include <dune/common/std/constexpr.hh>
#include "istlexception.hh"
......
......@@ -9,6 +9,7 @@
#include <dune/common/dotproduct.hh>
#include <dune/common/ftraits.hh>
#include <dune/common/std/constexpr.hh>
#include "istlexception.hh"
......
......@@ -43,7 +43,6 @@ int main(int argc, char** argv) try
MultiTypeBlockMatrix<RowType0,RowType1> multiMatrix;
//fusion::at_c<0>(multiMatrix)[_0].setSize(3,3);
multiMatrix[_0][_0].setSize(3,3);
multiMatrix[_0][_1].setSize(3,2);
multiMatrix[_1][_0].setSize(2,3);
......@@ -210,4 +209,4 @@ catch (std::exception& e)
{
std::cerr << "Unknown exception encountered!" << std::endl;
return 3;
}
\ No newline at end of file
}
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