From 8b489b83017363f9507f3418bde4e5d2014d5813 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 13 Oct 2025 19:19:04 -0400 Subject: [PATCH] chore: remove unneeded semi colons from several places --- src/lib/deskflow/ClipboardChunk.h | 2 +- src/lib/gui/Action.h | 2 +- src/lib/platform/EiScreen.h | 2 +- src/lib/server/Config.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/deskflow/ClipboardChunk.h b/src/lib/deskflow/ClipboardChunk.h index 9cf87cf41..adc059107 100644 --- a/src/lib/deskflow/ClipboardChunk.h +++ b/src/lib/deskflow/ClipboardChunk.h @@ -16,7 +16,7 @@ constexpr static auto s_clipboardChunkMetaSize = 7; namespace deskflow { class IStream; -}; +} class ClipboardChunk : public Chunk { diff --git a/src/lib/gui/Action.h b/src/lib/gui/Action.h index ae90cd862..279d3059a 100644 --- a/src/lib/gui/Action.h +++ b/src/lib/gui/Action.h @@ -28,7 +28,7 @@ inline static const QString LockToScreen = QStringLiteral("lockCursorToScreen"); inline static const QString ActiveOnRelease = QStringLiteral("activeOnRelease"); inline static const QString HasScreens = QStringLiteral("hasScreens"); inline static const QString RestartServer = QStringLiteral("restartServer"); -}; // namespace SettingsKeys +} // namespace SettingsKeys class Action { diff --git a/src/lib/platform/EiScreen.h b/src/lib/platform/EiScreen.h index bfad93baa..daee894a4 100644 --- a/src/lib/platform/EiScreen.h +++ b/src/lib/platform/EiScreen.h @@ -173,7 +173,7 @@ private: KeyID keyid() const { return m_id; - }; + } bool removeById(std::uint32_t id); void addItem(HotKeyItem item); std::uint32_t findByMask(std::uint32_t mask) const; diff --git a/src/lib/server/Config.h b/src/lib/server/Config.h index 888c5b7ea..572918fae 100644 --- a/src/lib/server/Config.h +++ b/src/lib/server/Config.h @@ -35,7 +35,7 @@ template <> struct iterator_traits using pointer = std::string *; using reference = std::string &; }; -}; // namespace std +} // namespace std namespace deskflow::server {