mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
more clang fixes
This commit is contained in:
parent
b9d25faef8
commit
9b021f8af4
@ -192,10 +192,10 @@ private:
|
||||
cont.push_back(1);
|
||||
cont.push_back("2");
|
||||
cont.push_back(3.5);
|
||||
Var arr(cont);
|
||||
Poco::Dynamic::Var arr(cont);
|
||||
assert (arr.size() == 3);
|
||||
Var::Iterator it = arr.begin();
|
||||
Var::Iterator end = arr.end();
|
||||
Poco::Dynamic::Var::Iterator it = arr.begin();
|
||||
Poco::Dynamic::Var::Iterator end = arr.end();
|
||||
int counter = 0;
|
||||
for (; it != end; ++it)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user