chore: unix/ArchLogUnix, use default for constructor / deconstructor
This commit is contained in:
@ -13,16 +13,6 @@
|
||||
// ArchLogUnix
|
||||
//
|
||||
|
||||
ArchLogUnix::ArchLogUnix()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
ArchLogUnix::~ArchLogUnix()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void ArchLogUnix::openLog(const char *name)
|
||||
{
|
||||
openlog(name, 0, LOG_DAEMON);
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user