summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-03-17 18:55:49 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-03-17 18:55:49 -0400
commit6ca7763bc02e3307ba782cf6201d16d5386b2906 (patch)
tree6de43ba0736d7377ad4a33068cd1fdc241799629 /include/common.h
parentde0d7a8e0afee90ee913685d31fc02301d652210 (diff)
change to header guards wooo
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index dbfd7e05..14f7051b 100644
--- a/include/common.h
+++ b/include/common.h
@@ -1,4 +1,5 @@
-#pragma once
+#ifndef DECOMP_COMMON_TYPES_H
+#define DECOMP_COMMON_TYPES_H
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
@@ -113,3 +114,5 @@ private:
inline NonCopyable(const NonCopyable &) {}
};
#endif
+
+#endif