summaryrefslogtreecommitdiffstats
path: root/src/Reactor.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/Reactor.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/Reactor.hpp')
-rw-r--r--src/Reactor.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Reactor.hpp b/src/Reactor.hpp
index b053fed..74af8b7 100644
--- a/src/Reactor.hpp
+++ b/src/Reactor.hpp
@@ -32,10 +32,10 @@ public:
Canvas& canvas,
ILog& log);
- Reactor(const Reactor&) = delete;
+ Reactor(const Reactor&) = delete;
Reactor& operator=(const Reactor&) = delete;
- Reactor(Reactor&&) = delete;
+ Reactor(Reactor&&) = delete;
Reactor& operator=(Reactor&&) = delete;
~Reactor() = default;