Skip to content
Snippets Groups Projects
Commit 1356e533 authored by Felix Müller's avatar Felix Müller Committed by Ansgar Burchardt
Browse files

remove user-defined copy assign/constructor in favour of implicitly-defined ones

parent 6f60d4e7
Branches
Tags
No related merge requests found
......@@ -264,16 +264,6 @@ namespace Dune
: Father(father), indexSet_(&indexSet)
{}
iterator(const iterator& other)
: Father(other), indexSet_(other.indexSet_)
{}
iterator& operator==(const iterator& other)
{
Father::operator==(other);
indexSet_ = other.indexSet_;
}
private:
/**
* @brief Mark the index as deleted.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment