diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-08 01:34:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-08 01:34:44 +0200 |
commit | 41f4f4b6f9ba5fa20bb41967dc8ef8020081e38e (patch) | |
tree | f06241318bf19d07329b4130fc7e92d4b75dc234 /compat | |
parent | f845dbb21799d7b2879ba1ea9761fd3e68303ae8 (diff) |
a
Diffstat (limited to 'compat')
-rw-r--r-- | compat/defs.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/defs.hpp b/compat/defs.hpp index 36c6a034..818e004b 100644 --- a/compat/defs.hpp +++ b/compat/defs.hpp @@ -9,7 +9,7 @@ #define progn(...) [&]{__VA_ARGS__;}() #define DECLARE_DEPRECATED_COPY_ASSIGNMENT(type) \ - [[deprecated]] type(const type&) = default; \ + [[deprecated]] type(const type&) = default; \ [[deprecated]] type& operator=(const type&) = default #define DECLARE_DELETED_COPY_ASSIGNMENT(type) \ |