Skip to content
Snippets Groups Projects
Commit 0c8f9495 authored by Oliver Sander's avatar Oliver Sander
Browse files

Add missing parentheses in call to method 'size'

[[Imported from SVN: r6538]]
parent ec85a9a5
No related branches found
No related tags found
No related merge requests found
...@@ -625,7 +625,7 @@ namespace Dune ...@@ -625,7 +625,7 @@ namespace Dune
template<typename T, class A> template<typename T, class A>
bool SLList<T,A>::operator==(const SLList& other) const bool SLList<T,A>::operator==(const SLList& other) const
{ {
if(size!=other.size()) if(size()!=other.size())
return false; return false;
for(const_iterator iter=begin(), oiter=other.begin(); for(const_iterator iter=begin(), oiter=other.begin();
iter != end(); ++iter, ++oiter) iter != end(); ++iter, ++oiter)
......
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