Skip to content
Snippets Groups Projects
Commit 954b933f authored by Markus Blatt's avatar Markus Blatt
Browse files

Size was not initialized with zero by constructor.

[[Imported from SVN: r1463]]
parent 4a651f72
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,7 @@ namespace Dune
template<typename T, class A>
SLList<T,A>::SLList()
: head_(0), tail_(0), allocator_()
: head_(0), tail_(0), allocator_(), size_(0)
{}
template<typename T, class A>
......
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