mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Consistent renaming of 'counters' and 'sequence' to 'index'
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user