chore: unix/ArchTimeUnix, use default for constructor and deconstructor

This commit is contained in:
sithlord48
2025-04-30 21:40:21 -04:00
committed by Nick Bolton
parent 67c7ba6dae
commit 56dd5492b4
2 changed files with 2 additions and 12 deletions

View File

@ -22,16 +22,6 @@
// ArchTimeUnix
//
ArchTimeUnix::ArchTimeUnix()
{
// do nothing
}
ArchTimeUnix::~ArchTimeUnix()
{
// do nothing
}
double ArchTimeUnix::time()
{
struct timeval t;

View File

@ -15,8 +15,8 @@
class ArchTimeUnix : public IArchTime
{
public:
ArchTimeUnix();
~ArchTimeUnix() override;
ArchTimeUnix() = default;
~ArchTimeUnix() override = default;
// IArchTime overrides
double time() override;