diff --git a/graph.h b/graph.h index 35571d1..c52d073 100644 --- a/graph.h +++ b/graph.h @@ -1,5 +1,4 @@ -#ifndef GRAPH_H -#define GRAPH_H +#pragma once #include #include @@ -36,6 +35,4 @@ public: //Preventing mem-spikes by preventing copying and enforcing deletions. Graph(const Graph&) = delete; Graph& operator=(const Graph&) = delete; -}; - -#endif \ No newline at end of file +}; \ No newline at end of file