remove an invalid and uneeded assignment

This commit is contained in:
Jonathan Gray 2013-04-23 20:27:46 +10:00
parent e1fa7930f5
commit 5335a8f693
1 changed files with 1 additions and 1 deletions

View File

@ -2476,7 +2476,7 @@ int CSequencer::Save()
pIcarus->BufferWrite( &numSequences, sizeof( numSequences ) );
//Second pass, save out all sequences, in order
sequence_l::iterator iterSeq = NULL;
sequence_l::iterator iterSeq;
STL_ITERATE( iterSeq, m_sequences )
{
id = (*iterSeq)->GetID();