Switched from the bulky style of header safety to the 'pragma once' style

This commit is contained in:
Rapturate
2026-02-28 13:21:05 -05:00
parent da3408dcb7
commit f9e80f23a1

View File

@@ -1,5 +1,4 @@
#ifndef GRAPH_H
#define GRAPH_H
#pragma once
#include <new>
#include <utility>
@@ -36,6 +35,4 @@ public:
//Preventing mem-spikes by preventing copying and enforcing deletions.
Graph(const Graph&) = delete;
Graph& operator=(const Graph&) = delete;
};
#endif
};