13
0

use musical_time_equal() test for equality when copying note data, not strict floating point equality. should fix #4609 (and maybe another one too)

git-svn-id: svn://localhost/ardour2/branches/3.0@11407 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-01-31 23:20:13 +00:00
parent 34881407e7
commit 40af4b914f

View File

@ -39,7 +39,7 @@ Note<Time>::Note(uint8_t chan, Time t, Time l, uint8_t n, uint8_t v)
_off_event.buffer()[1] = n; _off_event.buffer()[1] = n;
_off_event.buffer()[2] = 0x40; _off_event.buffer()[2] = 0x40;
assert(time() == t); assert(musical_time_equal (time(),t));
assert(musical_time_equal (length(), l)); assert(musical_time_equal (length(), l));
assert(note() == n); assert(note() == n);
assert(velocity() == v); assert(velocity() == v);
@ -67,11 +67,11 @@ Note<Time>::Note(const Note<Time>& copy)
memcpy(_off_event_buffer, copy._off_event_buffer, 3); memcpy(_off_event_buffer, copy._off_event_buffer, 3);
*/ */
assert(time() == copy.time()); assert(musical_time_equal (time(),copy.time()));
assert(end_time() == copy.end_time()); assert(musical_time_equal (end_time(), copy.end_time()));
assert(musical_time_equal (length(), copy.length()));
assert(note() == copy.note()); assert(note() == copy.note());
assert(velocity() == copy.velocity()); assert(velocity() == copy.velocity());
assert(length() == copy.length());
assert(_on_event.channel() == _off_event.channel()); assert(_on_event.channel() == _off_event.channel());
assert(channel() == copy.channel()); assert(channel() == copy.channel());
} }
@ -95,11 +95,11 @@ Note<Time>::operator=(const Note<Time>& other)
_on_event = other._on_event; _on_event = other._on_event;
_off_event = other._off_event; _off_event = other._off_event;
assert(time() == other.time()); assert(musical_time_equal (time(),other.time()));
assert(end_time() == other.end_time()); assert(musical_time_equal (end_time(), other.end_time()));
assert(musical_time_equal (length(), other.length()));
assert(note() == other.note()); assert(note() == other.note());
assert(velocity() == other.velocity()); assert(velocity() == other.velocity());
assert(length() == other.length());
assert(_on_event.channel() == _off_event.channel()); assert(_on_event.channel() == _off_event.channel());
assert(channel() == other.channel()); assert(channel() == other.channel());