mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 08:31:43 +02:00
GH #1050 Foundation: fix gcc -Wshadow warnings
This commit is contained in:
@@ -62,8 +62,8 @@ public:
|
||||
typedef typename std::map<K, T>::const_iterator MapConstIterator;
|
||||
|
||||
MapConstIterator it = val.begin();
|
||||
MapConstIterator end = val.end();
|
||||
for (; it != end; ++it) _data.insert(ValueType(it->first, Var(it->second)));
|
||||
MapConstIterator itEnd = val.end();
|
||||
for (; it != itEnd; ++it) _data.insert(ValueType(it->first, Var(it->second)));
|
||||
}
|
||||
|
||||
virtual ~Struct()
|
||||
|
Reference in New Issue
Block a user