diff options
author | David Robillard <d@drobilla.net> | 2007-12-07 03:05:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-12-07 03:05:20 +0000 |
commit | 7cf506c65ca517fc7cd4976f26fc6d5b7b42223c (patch) | |
tree | 6fd2f5681c354121e12acd1466ff1b09a7149944 | |
parent | c0fbcf4d318bb9a6e95194b982f4eb382d1b1f12 (diff) | |
download | raul-7cf506c65ca517fc7cd4976f26fc6d5b7b42223c.tar.gz raul-7cf506c65ca517fc7cd4976f26fc6d5b7b42223c.tar.bz2 raul-7cf506c65ca517fc7cd4976f26fc6d5b7b42223c.zip |
It's evolution, baby.
git-svn-id: http://svn.drobilla.net/lad/raul@958 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | raul/List.hpp | 4 |
1 files 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<T>* 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<T>; private: - const List<T>* const _list; + const List<T>* _list; const typename List<T>::Node* _listnode; }; |