mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 05:29:41 +01:00
Revert "GH #1050 PageCompiler: fix gcc -Wshadow warnings"
This commit is contained in:
committed by
GitHub
parent
4a2d817015
commit
d4382fae62
@@ -103,8 +103,8 @@ void RecordSet::reset(const Statement& stmt)
|
||||
_totalRowCount = UNKNOWN_TOTAL_ROW_COUNT;
|
||||
|
||||
RowMap::iterator it = _rowMap.begin();
|
||||
RowMap::iterator itEnd = _rowMap.end();
|
||||
for (; it != itEnd; ++it) delete it->second;
|
||||
RowMap::iterator end = _rowMap.end();
|
||||
for (; it != end; ++it) delete it->second;
|
||||
_rowMap.clear();
|
||||
|
||||
Statement::operator = (stmt);
|
||||
|
||||
Reference in New Issue
Block a user