summaryrefslogtreecommitdiffstats
path: root/src/TextViewLog.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/TextViewLog.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/TextViewLog.hpp')
-rw-r--r--src/TextViewLog.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextViewLog.hpp b/src/TextViewLog.hpp
index 31b786d..40d0782 100644
--- a/src/TextViewLog.hpp
+++ b/src/TextViewLog.hpp
@@ -26,10 +26,10 @@ class TextViewLog : public ILog
public:
explicit TextViewLog(Widget<Gtk::TextView>& text_view);
- TextViewLog(const TextViewLog&) = delete;
+ TextViewLog(const TextViewLog&) = delete;
TextViewLog& operator=(const TextViewLog&) = delete;
- TextViewLog(TextViewLog&&) = delete;
+ TextViewLog(TextViewLog&&) = delete;
TextViewLog& operator=(TextViewLog&&) = delete;
~TextViewLog() override = default;