summaryrefslogtreecommitdiffstats
path: root/src/ClientID.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/ClientID.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/ClientID.hpp')
-rw-r--r--src/ClientID.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientID.hpp b/src/ClientID.hpp
index 0cfdb29..9d4c361 100644
--- a/src/ClientID.hpp
+++ b/src/ClientID.hpp
@@ -18,10 +18,10 @@ namespace patchage {
struct ClientID {
using Type = ClientType;
- ClientID(const ClientID& copy) = default;
+ ClientID(const ClientID& copy) = default;
ClientID& operator=(const ClientID& copy) = default;
- ClientID(ClientID&& id) = default;
+ ClientID(ClientID&& id) = default;
ClientID& operator=(ClientID&& id) = default;
~ClientID() = default;