mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-26 11:21:08 +00:00
fixed gcc compile error
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@80 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
0f319946a6
commit
6c3931aff8
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ public:
|
||||||
template<typename Functor>
|
template<typename Functor>
|
||||||
void forEach(const Functor& functor)
|
void forEach(const Functor& functor)
|
||||||
{
|
{
|
||||||
for(Values::iterator i = m_values.begin(); i != m_values.end(); ++i)
|
for(typename Values::iterator i = m_values.begin(); i != m_values.end(); ++i)
|
||||||
{
|
{
|
||||||
functor(*(*i));
|
functor(*(*i));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue