Skip to content
Snippets Groups Projects
Commit 9c1c7980 authored by Timo Koch's avatar Timo Koch
Browse files

[glue] Add missing default template args

parent a5f4b581
1 merge request!1618Fix/glue constructor
......@@ -26,11 +26,14 @@
#define DUMUX_MULTIDOMAIN_MIXEDDIMENSION_GLUE_HH
#include <dumux/multidomain/glue.hh>
#include <dune/grid/common/mcmgmapper.hh>
namespace Dumux {
// forward declaration
template<class BulkGridView, class LowDimGridView, class BulkMapper, class LowDimMapper>
template<class BulkGridView, class LowDimGridView,
class BulkMapper = Dune::MultipleCodimMultipleGeomTypeMapper<BulkGridView>,
class LowDimMapper = Dune::MultipleCodimMultipleGeomTypeMapper<LowDimGridView>>
class DUNE_DEPRECATED_MSG("Use MultiDomainGlue instead. Will be removed after 3.1!")
MixedDimensionGlue
: public MultiDomainGlue<LowDimGridView, BulkGridView, LowDimMapper, BulkMapper>
......
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