summaryrefslogtreecommitdiffstats
path: root/src/core/macros.hh
diff options
context:
space:
mode:
authoruntodesu <kirill@untode.su>2025-06-30 23:39:41 +0500
committeruntodesu <kirill@untode.su>2025-06-30 23:39:41 +0500
commitc7b0c8e0286a1b2bb7ec55e579137dfc3b22eeb9 (patch)
tree310a7798b85ce049b918454cb79e1f9db1505dd1 /src/core/macros.hh
parent43a7dc51d80b6fd99cd5e77561809ea4b179bc73 (diff)
downloadvoxelius-c7b0c8e0286a1b2bb7ec55e579137dfc3b22eeb9.tar.bz2
voxelius-c7b0c8e0286a1b2bb7ec55e579137dfc3b22eeb9.zip
Nuke core/macros.hh
Diffstat (limited to 'src/core/macros.hh')
-rw-r--r--src/core/macros.hh19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/core/macros.hh b/src/core/macros.hh
deleted file mode 100644
index fbbe10c..0000000
--- a/src/core/macros.hh
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef CORE_MACROS_HH
-#define CORE_MACROS_HH 1
-#pragma once
-
-#define DISABLE_COPY_OPERATORS(class_name) \
-public: \
- explicit class_name(const class_name& other) = delete; \
- class_name& operator=(const class_name& other) = delete
-
-#define DISABLE_MOVE_OPERATORS(class_name) \
-public: \
- explicit class_name(class_name&& other) = delete; \
- class_name& operator=(class_name&& other) = delete
-
-#define DECLARE_DEFAULT_CONSTRUCTOR(class_name) \
-public: \
- class_name(void) = default
-
-#endif // CORE_MACROS_HH