Delete unused copy-and-shift constructor for TimeRange

This commit is contained in:
Thomas Goyne 2014-01-08 16:41:43 -08:00
parent 6617d52178
commit c19a1c7641
1 changed files with 2 additions and 12 deletions

View File

@ -40,22 +40,12 @@ public:
/// @brief Constructor
/// @param begin Index of the first millisecond to include in the range
/// @param end Index of one past the last millisecond to include in the range
TimeRange(int begin, int end) : _begin(begin), _end(end)
TimeRange(int begin, int end)
: _begin(begin), _end(end)
{
assert(end >= begin);
}
/// @brief Copy constructor, optionally adjusting the range
/// @param src The range to duplicate
/// @param begin_adjust Number of milliseconds to add to the start of the range
/// @param end_adjust Number of milliseconds to add to the end of the range
TimeRange(const TimeRange &src, int begin_adjust = 0, int end_adjust = 0)
{
_begin = src._begin + begin_adjust;
_end = src._end + end_adjust;
assert(_end >= _begin);
}
/// Get the length of the range in milliseconds
int length() const { return _end - _begin; }
/// Get the start time of the range in milliseconds