Remove unused (and timestamp type nasty) last_event_time() from SMF.

I swear I already did this.


git-svn-id: svn://localhost/ardour2/branches/3.0@4564 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard
2009-02-14 22:40:55 +00:00
parent 3d4d0477f6
commit f8d171d297
4 changed files with 10 additions and 9 deletions

View File

@@ -241,7 +241,6 @@ SMF<Time>::append_event_delta(uint32_t delta_t, const Event<Time>& ev)
assert(_smf_track);
smf_track_add_event_delta_pulses(_smf_track, event, int(delta_t));
_last_ev_time = ev.time();
if (ev.size() > 0) {
_empty = false;
@@ -260,8 +259,6 @@ SMF<Time>::begin_write()
smf_add_track(_smf, _smf_track);
assert(_smf->number_of_tracks == 1);
_last_ev_time = 0;
}
template<typename Time>