Code Cleanup: common: removing default constructors

As C++11 is the adopted standard, trivial constructors are not needed,
compiler can generate it for us.
This commit is contained in:
lightyear15
2019-10-26 21:39:34 +02:00
parent 52f4c59bec
commit 2453b1d10c
5 changed files with 2 additions and 14 deletions
-4
View File
@@ -1,9 +1,5 @@
#include "timerange.h"
TimeRange::TimeRange()
{
}
TimeRange::TimeRange(const rational &in, const rational &out) :
in_(in),
out_(out)