Rename Node into ListNode

This commit is contained in:
Benoit Blanchon
2014-11-05 13:14:15 +01:00
parent 8138c64116
commit 342b079133
4 changed files with 9 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ template <typename T>
class List {
public:
typedef T value_type;
typedef Node<T> node_type;
typedef ListNode<T> node_type;
typedef ListIterator<T> iterator;
typedef ListConstIterator<T> const_iterator;