summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/List.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/List.h')
-rw-r--r--src/libs/engine/List.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libs/engine/List.h b/src/libs/engine/List.h
index 2ed83d6f..7997a6c5 100644
--- a/src/libs/engine/List.h
+++ b/src/libs/engine/List.h
@@ -43,10 +43,6 @@ public:
const T& elem() const { return m_elem; }
private:
- // Prevent copies (undefined)
- ListNode(const ListNode& copy);
- ListNode& operator=(const ListNode& copy);
-
T m_elem;
ListNode* m_next;
ListNode* m_prev;
@@ -132,10 +128,6 @@ public:
//const_iterator end() const;
private:
- // Prevent copies (undefined)
- List(const List& copy);
- List& operator=(const List& copy);
-
ListNode<T>* m_head;
ListNode<T>* m_tail;
size_t m_size;