chore: PrimaryClient, use default for deconstructors / constructors

This commit is contained in:
sithlord48
2025-05-01 11:38:55 -04:00
committed by Nick Bolton
parent c8734755c5
commit d643e4b189
2 changed files with 1 additions and 6 deletions

View File

@ -26,11 +26,6 @@ PrimaryClient::PrimaryClient(const std::string &name, deskflow::Screen *screen)
}
}
PrimaryClient::~PrimaryClient()
{
// do nothing
}
void PrimaryClient::reconfigure(uint32_t activeSides)
{
m_screen->reconfigure(activeSides);

View File

@ -27,7 +27,7 @@ public:
\c name is the name of the server and \p screen is primary screen.
*/
PrimaryClient(const std::string &name, deskflow::Screen *screen);
~PrimaryClient() override;
~PrimaryClient() override = default;
#ifdef TEST_ENV
PrimaryClient() : BaseClientProxy("")