summaryrefslogtreecommitdiffstats
path: root/test/maid_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-20 11:05:07 -0400
committerDavid Robillard <d@drobilla.net>2022-07-20 16:24:23 -0400
commite883d87e43b06b54a810413d0a728ace1e9c26a0 (patch)
tree1e11f8a40ff91f4c78b870c08337979fbc052691 /test/maid_test.cpp
parentd7653e3feed6da300d4cff31860d6c26b24ec329 (diff)
downloadraul-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/maid_test.cpp')
-rw-r--r--test/maid_test.cpp7
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; }