Skip to content
Snippets Groups Projects
Commit 3ff6025b authored by Thimo Neubauer's avatar Thimo Neubauer
Browse files

fixed slightly weird iterator-constructors

[[Imported from SVN: r1229]]
parent 55698a07
No related branches found
No related tags found
No related merge requests found
......@@ -277,7 +277,7 @@ namespace Dune
inline ArrayListIterator<MemberType,N,A>& operator=(const ArrayListIterator<MemberType,N,A>& other);
inline ArrayListIterator() : position_(0), list_(list_)
inline ArrayListIterator() : position_(0)
{}
private:
......@@ -361,7 +361,7 @@ namespace Dune
inline const ConstArrayListIterator<MemberType,N,A>& operator=(const ConstArrayListIterator<MemberType,N,A>& other);
inline ConstArrayListIterator() : position_(0), list_(list_)
inline ConstArrayListIterator() : position_(0)
{}
inline ConstArrayListIterator(const ArrayListIterator<MemberType,N,A>& other);
......
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