Skip to content

Commit

Permalink
refs #3764 fixing unix build
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 10, 2011
1 parent 57d58ed commit a2da6aa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -64,7 +64,7 @@ class ValidatorAnyList : public IValidator<TYPE>
std::set<std::string> allowedValues() const
{
std::set<std::string> rez;
std::set<TYPE >::const_iterator it=m_allowedValues.begin();
typename 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));
}
Expand Down

0 comments on commit a2da6aa

Please sign in to comment.