From 7cf506c65ca517fc7cd4976f26fc6d5b7b42223c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 7 Dec 2007 03:05:20 +0000 Subject: It's evolution, baby. git-svn-id: http://svn.drobilla.net/lad/raul@958 a436a847-0d15-0410-975c-d299462d15a1 --- raul/List.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raul/List.hpp b/raul/List.hpp index f695421..c20a454 100644 --- a/raul/List.hpp +++ b/raul/List.hpp @@ -103,7 +103,7 @@ public: const_iterator(const List* const list); const_iterator(const iterator& i) : _list(i._list), _listnode(i._listnode) {} - + inline const T& operator*(); inline const T* operator->(); inline const_iterator& operator++(); @@ -115,7 +115,7 @@ public: friend class List; private: - const List* const _list; + const List* _list; const typename List::Node* _listnode; }; -- cgit v1.2.1