u01: Add include guard to header
This commit is contained in:
parent
3e63e632b7
commit
cbee4361a1
|
@ -1,3 +1,5 @@
|
|||
#ifndef _NODE_H
|
||||
#define _NODE_H
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
@ -19,3 +21,4 @@ private:
|
|||
};
|
||||
|
||||
node *create_complete_tree(std::size_t nr_child_nodes, unsigned int tree_depth);
|
||||
#endif
|
||||
|
|
Reference in a new issue