aboutsummaryrefslogtreecommitdiff
path: root/cpp-practicum
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-12-30 21:56:06 +0800
committercrupest <crupest@outlook.com>2020-12-30 21:56:06 +0800
commit4fcaa6683056ec895b5a2575662761fc473423b9 (patch)
tree54e3fd9873de443a0d69d14902f0a7959ec7493c /cpp-practicum
parent630a65e4b0899515bc61b03d9ea25a024c87e75a (diff)
downloadlife-4fcaa6683056ec895b5a2575662761fc473423b9.tar.gz
life-4fcaa6683056ec895b5a2575662761fc473423b9.tar.bz2
life-4fcaa6683056ec895b5a2575662761fc473423b9.zip
...
Diffstat (limited to 'cpp-practicum')
-rw-r--r--cpp-practicum/Base.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp-practicum/Base.hpp b/cpp-practicum/Base.hpp
index bdf87dd..44a9d6c 100644
--- a/cpp-practicum/Base.hpp
+++ b/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;