u01: Switch from include guards to pragma once

This commit is contained in:
Simon Bruder 2023-04-22 10:01:39 +02:00
parent cbee4361a1
commit 89d1f5f6e0

View file

@ -1,5 +1,5 @@
#ifndef _NODE_H #pragma once
#define _NODE_H
#include <memory> #include <memory>
#include <string> #include <string>
#include <vector> #include <vector>
@ -21,4 +21,3 @@ private:
}; };
node *create_complete_tree(std::size_t nr_child_nodes, unsigned int tree_depth); node *create_complete_tree(std::size_t nr_child_nodes, unsigned int tree_depth);
#endif