makefile really improved on header dependencies

This commit is contained in:
hugogogo
2022-06-29 14:10:17 +02:00
parent 26436c8d8a
commit b0b63d6238
27 changed files with 610 additions and 481 deletions

View File

@@ -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