mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
NOOP: whitespace changes
This commit is contained in:
parent
f8a0ba246c
commit
15b28b103a
1 changed files with 1 additions and 2 deletions
|
|
@ -101,8 +101,7 @@ class LIBTEMPORAL_API timepos_t : public int62_t {
|
|||
bool operator>= (timepos_t const & other) const { if (is_beats() == other.is_beats()) return val() >= other.val(); return expensive_gte (other); }
|
||||
|
||||
timepos_t operator+(timecnt_t const & d) const;
|
||||
timepos_t operator+(timepos_t const & d) const { if (is_beats() == d.is_beats()) return timepos_t (is_beats(), val() + d.val()); return expensive_add (d); }
|
||||
|
||||
timepos_t operator+(timepos_t const & d) const { if (is_beats() == d.is_beats()) return timepos_t (is_beats(), val() + d.val()); return expensive_add (d); }
|
||||
timepos_t operator+(Temporal::Beats const &b ) const { if (is_beats()) return timepos_t (true, ticks() + b.to_ticks()); return expensive_add (b); }
|
||||
|
||||
/* donn't provide operator+(samplepos_t) or operator+(superclock_t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue