chore: unix/ArchLogUnix, use default for constructor / deconstructor

This commit is contained in:
sithlord48
2025-05-01 10:46:21 -04:00
committed by Nick Bolton
parent 6523911e4d
commit 1138e3b1fb
2 changed files with 2 additions and 12 deletions

View File

@ -13,16 +13,6 @@
// ArchLogUnix
//
ArchLogUnix::ArchLogUnix()
{
// do nothing
}
ArchLogUnix::~ArchLogUnix()
{
// do nothing
}
void ArchLogUnix::openLog(const char *name)
{
openlog(name, 0, LOG_DAEMON);

View File

@ -15,8 +15,8 @@
class ArchLogUnix : public IArchLog
{
public:
ArchLogUnix();
~ArchLogUnix() override;
ArchLogUnix() = default;
~ArchLogUnix() override = default;
// IArchLog overrides
void openLog(const char *name) override;