Removed the DoublyLinkedListLink constructor and destructor. They are not
necessary and prevent the structures from being used in a union. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34525 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2005-2007, Ingo Weinhold, [email protected].
|
||||
* Copyright 2005-2009, Ingo Weinhold, [email protected].
|
||||
* Copyright 2006-2009, Axel Dörfler, [email protected].
|
||||
*
|
||||
* Distributed under the terms of the MIT License.
|
||||
@@ -25,9 +25,6 @@
|
||||
template<typename Element>
|
||||
class DoublyLinkedListLink {
|
||||
public:
|
||||
DoublyLinkedListLink() : next(NULL), previous(NULL) {}
|
||||
~DoublyLinkedListLink() {}
|
||||
|
||||
Element* next;
|
||||
Element* previous;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user