Skip to content

Commit

Permalink
refs #3763 Attempt to fix unix build
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 10, 2011
1 parent 3a92482 commit 410166a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -64,8 +64,8 @@ class ValidatorAnyList : public IValidator<TYPE>
std::set<std::string> allowedValues() const
{
std::set<std::string> rez;
std::set<TYPE>::const_iterator it;
for(it=m_allowedValues.begin();it!=m_allowedValues.end();it++){
std::set<TYPE >::const_iterator it=m_allowedValues.begin();
for(;it!=m_allowedValues.end();it++){
rez.insert(rez.end(),boost::lexical_cast<std::string>(*it));
}
return rez;
Expand Down

0 comments on commit 410166a

Please sign in to comment.