Skip to content
Snippets Groups Projects

[bugfix] Add missing specialization FieldTraits<MultiTypeBlockMatrix>

Merged Carsten Gräser requested to merge bugfix/implement-multitypeblockmatrix-fieldtraits into master
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
@@ -404,6 +404,18 @@ namespace Dune {
};
/** @addtogroup DenseMatVec
@{
*/
template <typename... Rows>
struct FieldTraits< MultiTypeBlockMatrix<Rows...> >
{
using field_type = typename MultiTypeBlockMatrix<Rows...>::field_type;
using real_type = typename FieldTraits<field_type>::real_type;
};
/**
@brief << operator for a MultiTypeBlockMatrix
Loading