diff options
author | David Robillard <d@drobilla.net> | 2011-05-18 15:52:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-18 15:52:39 +0000 |
commit | 7bd4febfdb799cd359a380d23640654f476dadae (patch) | |
tree | 7acf0526548382e3768b45628a47f094120b7724 /raul/List.hpp | |
parent | 3a1a098d7d41468a74862777d3085f537fb6b894 (diff) | |
download | raul-7bd4febfdb799cd359a380d23640654f476dadae.tar.gz raul-7bd4febfdb799cd359a380d23640654f476dadae.tar.bz2 raul-7bd4febfdb799cd359a380d23640654f476dadae.zip |
Strip double blank lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3279 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/List.hpp')
-rw-r--r-- | raul/List.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/raul/List.hpp b/raul/List.hpp index 8744114..38c4609 100644 --- a/raul/List.hpp +++ b/raul/List.hpp @@ -29,7 +29,6 @@ namespace Raul { - /** A realtime safe, (partially) thread safe doubly-linked list. * * Elements can be added safely while another thread is reading the list. @@ -71,7 +70,6 @@ public: AtomicPtr<Node> _next; }; - List(size_t size=0, Node* head=NULL, Node* tail=NULL) : _size(size) , _end_iter(this) @@ -125,7 +123,6 @@ public: const typename List<T>::Node* _listnode; }; - /** Realtime safe iterator for a List. */ class iterator { public: @@ -171,7 +168,6 @@ private: const_iterator _const_end_iter; }; - } // namespace Raul #endif // RAUL_LIST_HPP |