remove unused member variable

This commit is contained in:
Paul Davis 2019-10-16 08:04:23 -06:00
parent 088e4bca5a
commit 08ab8fc58a
3 changed files with 1 additions and 3 deletions

View file

@ -118,7 +118,6 @@ protected:
protected: protected:
Flag _flags; Flag _flags;
uint32_t i_am_the_modifier;
bool _slaved; bool _slaved;
bool in_set_state; bool in_set_state;
samplepos_t playback_sample; samplepos_t playback_sample;

View file

@ -50,7 +50,6 @@ const string DiskIOProcessor::state_node_name = X_("DiskIOProcessor");
DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f) DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f)
: Processor (s, str) : Processor (s, str)
, _flags (f) , _flags (f)
, i_am_the_modifier (false)
, _slaved (false) , _slaved (false)
, in_set_state (false) , in_set_state (false)
, playback_sample (0) , playback_sample (0)

View file

@ -212,7 +212,7 @@ DiskReader::playlist_changed (const PropertyChange&)
void void
DiskReader::playlist_modified () DiskReader::playlist_modified ()
{ {
if (!i_am_the_modifier && !overwrite_queued) { if (!overwrite_queued) {
_session.request_overwrite_buffer (_route); _session.request_overwrite_buffer (_route);
overwrite_queued = true; overwrite_queued = true;
} }