summaryrefslogtreecommitdiffstats
path: root/raul/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/List.hpp')
-rw-r--r--raul/List.hpp4
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