13
0

NO-OP: internal whitespace and newline cleanup

This commit is contained in:
Paul Davis 2024-06-21 22:17:30 -06:00
parent 4267d5b0d7
commit 5da8de05ca
3 changed files with 15 additions and 16 deletions

View File

@ -113,7 +113,8 @@ Event<Timestamp>::Event(const Event& copy, bool owns_buf)
}
template<typename Timestamp>
Event<Timestamp>::~Event() {
Event<Timestamp>::~Event()
{
if (_owns_buf) {
free (_buf);
}

View File

@ -534,9 +534,7 @@ Sequence<Time>::Sequence(const Sequence<Time>& other)
*/
template<typename Time>
bool
Sequence<Time>::control_to_midi_event(
std::shared_ptr< Event<Time> >& ev,
const ControlIterator& iter) const
Sequence<Time>::control_to_midi_event(std::shared_ptr< Event<Time> >& ev, const ControlIterator& iter) const
{
assert(iter.list.get());