Fix a compiler warning

This commit is contained in:
Mark de Wever 2008-03-18 16:36:19 +00:00
parent 49feee706d
commit 7e83dceaaf

View file

@ -1309,7 +1309,7 @@ void event_handler::handle_event_command(const queued_event& event_info,
if(!to_variable.empty())
{
variable_info::array_range range = state_of_game->get_variable_cfgs(to_variable);
for(range; range.first != range.second; ++range.first)
for( ; range.first != range.second; ++range.first)
{
data.push_back(**range.first);
}