diff options
author | David Robillard <d@drobilla.net> | 2022-07-20 11:05:07 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-20 16:24:23 -0400 |
commit | e883d87e43b06b54a810413d0a728ace1e9c26a0 (patch) | |
tree | 1e11f8a40ff91f4c78b870c08337979fbc052691 /test | |
parent | d7653e3feed6da300d4cff31860d6c26b24ec329 (diff) | |
download | raul-e883d87e43b06b54a810413d0a728ace1e9c26a0.tar.gz raul-e883d87e43b06b54a810413d0a728ace1e9c26a0.tar.bz2 raul-e883d87e43b06b54a810413d0a728ace1e9c26a0.zip |
Clean up special member functions and format with clang-format 14
Diffstat (limited to 'test')
-rw-r--r-- | test/maid_test.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/maid_test.cpp b/test/maid_test.cpp index 2a936f9..ba9867e 100644 --- a/test/maid_test.cpp +++ b/test/maid_test.cpp @@ -30,11 +30,10 @@ public: ++n_junk; } - Junk(const Junk&) = delete; + Junk(const Junk&) = delete; Junk& operator=(const Junk&) = delete; - - Junk(Junk&&) = delete; - Junk& operator=(Junk&&) = delete; + Junk(Junk&&) = delete; + Junk& operator=(Junk&&) = delete; ~Junk() override { --n_junk; } |