aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--works/life/cpp-practicum/Base.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/works/life/cpp-practicum/Base.hpp b/works/life/cpp-practicum/Base.hpp
index bdf87dd..44a9d6c 100644
--- a/works/life/cpp-practicum/Base.hpp
+++ b/works/life/cpp-practicum/Base.hpp
@@ -3,11 +3,6 @@
#include <exception>
#include <stdexcept>
-#define CRU_UNUSED(entity) static_cast<void>(entity);
-
-#define CRU__CONCAT(a, b) a##b
-#define CRU_MAKE_UNICODE_LITERAL(str) CRU__CONCAT(u, #str)
-
#define CRU_DEFAULT_COPY(classname) \
classname(const classname &) = default; \
classname &operator=(const classname &) = default;