makefile really improved on header dependencies
This commit is contained in:
@@ -43,11 +43,11 @@ template < typename ValueType >
|
||||
};
|
||||
|
||||
template < typename ValueType >
|
||||
struct node_sentinel {
|
||||
struct sentinel {
|
||||
|
||||
node<ValueType> *child;
|
||||
|
||||
node_sentinel() : child(NULL) {}
|
||||
sentinel() : child(NULL) {}
|
||||
};
|
||||
|
||||
} // namespace ft
|
||||
|
||||
Reference in New Issue
Block a user