Mixer: Clean up some compiler warnings.

This commit is contained in:
Jonathan Moore Liles 2009-12-26 00:04:03 -06:00
parent bdbed2a463
commit c06388b2f1
1 changed files with 5 additions and 4 deletions

View File

@ -65,26 +65,27 @@ Engine::freewheel ( bool starting )
/* THREAD: RT (non-RT) */ /* THREAD: RT (non-RT) */
int int
Engine::buffer_size ( nframes_t nframes ) Engine::buffer_size ( nframes_t )
{ {
// timeline->resize_buffers( nframes ); // timeline->resize_buffers( nframes );
return 0; return 0;
} }
int Engine::sync ( jack_transport_state_t state, jack_position_t *pos ) int Engine::sync ( jack_transport_state_t, jack_position_t * )
{ {
return 0;
} }
void void
Engine::timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos ) Engine::timebase ( jack_transport_state_t, jack_nframes_t, jack_position_t *, int )
{ {
} }
void void
Engine::timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos ) Engine::timebase ( jack_transport_state_t, jack_nframes_t, jack_position_t * )
{ {
} }