Skip to content
Snippets Groups Projects
Commit 085fe933 authored by Jonathan Youett's avatar Jonathan Youett
Browse files

The inside method now returns an object not a pointer

parent 1ee25f2c
No related branches found
No related tags found
No related merge requests found
......@@ -120,8 +120,8 @@ class MassAssembler : public LocalOperatorAssembler < GridType, TrialLocalFE, An
typedef typename TrialLocalFE::Traits::LocalBasisType::Traits::RangeType RangeType;
// Make sure we got suitable shape functions
assert(tFE.type() == it->inside()->type());
assert(aFE.type() == it->inside()->type());
assert(tFE.type() == it->inside().type());
assert(aFE.type() == it->inside().type());
// check if ansatz local fe = test local fe
if (not Base::isSameFE(tFE, aFE))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment