Skip to content
Snippets Groups Projects
Commit c3ec2391 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[md][embedded] avoid deprecation warnings

parent fe8c9ade
No related branches found
No related tags found
1 merge request!1616Feature/free-function-make-glue
...@@ -104,7 +104,7 @@ class EmbeddedCouplingManagerBase ...@@ -104,7 +104,7 @@ class EmbeddedCouplingManagerBase
using CouplingStencil = std::vector<std::size_t>; using CouplingStencil = std::vector<std::size_t>;
using GlobalPosition = typename Element<bulkIdx>::Geometry::GlobalCoordinate; using GlobalPosition = typename Element<bulkIdx>::Geometry::GlobalCoordinate;
using GlueType = MixedDimensionGlue<GridView<bulkIdx>, GridView<lowDimIdx>, ElementMapper<bulkIdx>, ElementMapper<lowDimIdx>>; using GlueType = MultiDomainGlue<GridView<lowDimIdx>, GridView<bulkIdx>, ElementMapper<lowDimIdx>, ElementMapper<bulkIdx>>;
public: public:
//! export traits //! export traits
...@@ -482,8 +482,7 @@ protected: ...@@ -482,8 +482,7 @@ protected:
const auto& lowDimFvGridGeometry = this->problem(lowDimIdx).fvGridGeometry(); const auto& lowDimFvGridGeometry = this->problem(lowDimIdx).fvGridGeometry();
// intersect the bounding box trees // intersect the bounding box trees
glue_->build(bulkFvGridGeometry.boundingBoxTree(), glue_->build(lowDimFvGridGeometry.boundingBoxTree(), bulkFvGridGeometry.boundingBoxTree());
lowDimFvGridGeometry.boundingBoxTree());
} }
template<class Geometry, class GlobalPosition> template<class Geometry, class GlobalPosition>
......
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