chore: PrimaryClient, use default for deconstructors / constructors
This commit is contained in:
@ -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);
|
||||
|
||||
@ -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("")
|
||||
|
||||
Reference in New Issue
Block a user