chore: remove unneeded semi colons from several places

This commit is contained in:
sithlord48
2025-10-13 19:19:04 -04:00
committed by Nick Bolton
parent d32b98ec34
commit 8b489b8301
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ constexpr static auto s_clipboardChunkMetaSize = 7;
namespace deskflow {
class IStream;
};
}
class ClipboardChunk : public Chunk
{

View File

@ -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
{

View File

@ -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;

View File

@ -35,7 +35,7 @@ template <> struct iterator_traits<deskflow::server::Config>
using pointer = std::string *;
using reference = std::string &;
};
}; // namespace std
} // namespace std
namespace deskflow::server {