Skip to content

Commit

Permalink
TimeRef destructor inline
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaim committed Mar 24, 2023
1 parent 156e9b4 commit 7606275
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion libmamba/include/mamba/core/timeref.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace validate

TimeRef(const std::time_t& time);
TimeRef();
~TimeRef();
~TimeRef() = default;

private:

Expand Down
2 changes: 0 additions & 2 deletions libmamba/src/core/timeref.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ namespace validate
{
}

TimeRef::~TimeRef() = default;

void TimeRef::set(const std::time_t& time)
{
m_time_ref = time;
Expand Down

0 comments on commit 7606275

Please sign in to comment.