clang lint

This commit is contained in:
ReenigneArcher
2022-02-16 18:23:56 -05:00
parent f54a32feac
commit d6183430ef
10 changed files with 67 additions and 62 deletions
+2 -2
View File
@@ -62,8 +62,8 @@ struct argument_type<T(U)> { typedef U type; };
x &operator=(x &&) noexcept = default; \
x();
#define KITTY_DEFAULT_CONSTR_MOVE(x) \
x(x &&) noexcept = default; \
#define KITTY_DEFAULT_CONSTR_MOVE(x) \
x(x &&) noexcept = default; \
x &operator=(x &&) noexcept = default;
#define KITTY_DEFAULT_CONSTR_MOVE_THROW(x) \