Skip to content
Snippets Groups Projects
Commit 6f8dc056 authored by Tim Keil's avatar Tim Keil
Browse files

[base/sliced] update sliced function

parent 88d9cc71
No related branches found
No related tags found
No related merge requests found
......@@ -72,8 +72,7 @@ class SlicedGridFunction<LF, r, 1> : public XT::Functions::GridFunctionInterface
protected:
void post_bind(const ElementType& element) override final
{
// local_function_->post_bind(element);
DUNE_THROW(NotImplemented, 'Implement it');
local_function_->bind(element);
}
public:
......@@ -98,7 +97,7 @@ class SlicedGridFunction<LF, r, 1> : public XT::Functions::GridFunctionInterface
}
private:
const std::unique_ptr<typename LF::LocalFunctionType> local_function_;
std::unique_ptr<typename LF::LocalFunctionType> local_function_;
const std::array<size_t, r>& dims_;
}; // class SlicedLocalFunction
......
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