diff options
author | crupest <crupest@outlook.com> | 2020-12-30 21:56:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-12-30 21:56:06 +0800 |
commit | 4fcaa6683056ec895b5a2575662761fc473423b9 (patch) | |
tree | 54e3fd9873de443a0d69d14902f0a7959ec7493c | |
parent | 630a65e4b0899515bc61b03d9ea25a024c87e75a (diff) | |
download | life-4fcaa6683056ec895b5a2575662761fc473423b9.tar.gz life-4fcaa6683056ec895b5a2575662761fc473423b9.tar.bz2 life-4fcaa6683056ec895b5a2575662761fc473423b9.zip |
...
-rw-r--r-- | cpp-practicum/Base.hpp | 5 |
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;
|