Skip to content

Commit

Permalink
more clang fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed May 28, 2013
1 parent b9d25fa commit 9b021f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Foundation/testsuite/src/VarTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,10 @@ class VarTest: public CppUnit::TestCase
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)
{
Expand Down

0 comments on commit 9b021f8

Please sign in to comment.