Consistent renaming of 'counters' and 'sequence' to 'index'

This commit is contained in:
Leonardo Alt
2018-10-17 15:58:13 +02:00
parent ec39fdcb3c
commit aa23326e06
10 changed files with 71 additions and 71 deletions
+3 -3
View File
@@ -27,7 +27,7 @@ SSAVariable::SSAVariable()
void SSAVariable::resetIndex()
{
m_currentSequenceCounter = 0;
m_nextFreeSequenceCounter.reset (new int);
*m_nextFreeSequenceCounter = 1;
m_currentIndex = 0;
m_nextFreeIndex.reset (new int);
*m_nextFreeIndex = 1;
}