summaryrefslogtreecommitdiffstats
path: root/src/Patchage.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-16 16:38:19 -0400
committerDavid Robillard <d@drobilla.net>2022-08-16 16:38:19 -0400
commit66e0bb76b40311245b9c59e2f3167e4e98027eba (patch)
treef40786256d86cf31b1705417f0bfa018c6230577 /src/Patchage.hpp
parente53d14cebf13698a987fabfb996806a566e90dca (diff)
downloadpatchage-66e0bb76b40311245b9c59e2f3167e4e98027eba.tar.gz
patchage-66e0bb76b40311245b9c59e2f3167e4e98027eba.tar.bz2
patchage-66e0bb76b40311245b9c59e2f3167e4e98027eba.zip
Fix whitespace
Apparently clang-format changed its mind about special member functions, and binary_location.h was just never formatted to begin with.
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r--src/Patchage.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp
index c4a4687..c3295bf 100644
--- a/src/Patchage.hpp
+++ b/src/Patchage.hpp
@@ -66,10 +66,10 @@ public:
explicit Patchage(Options options);
~Patchage();
- Patchage(const Patchage&) = delete;
+ Patchage(const Patchage&) = delete;
Patchage& operator=(const Patchage&) = delete;
- Patchage(Patchage&&) = delete;
+ Patchage(Patchage&&) = delete;
Patchage& operator=(Patchage&&) = delete;
void operator()(const setting::AlsaAttached& setting);