Skip to content

Commit

Permalink
- use C++11 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
aschnell committed Jul 24, 2018
1 parent a1de278 commit 7f293a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/MetaSnapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ MetaSnappers::init()
void
MetaSnappers::unload()
{
for (iterator it = entries.begin(); it != entries.end(); ++it)
it->unload();
for (MetaSnapper& meta_snapper : entries)
meta_snapper.unload();
}


Expand Down

0 comments on commit 7f293a9

Please sign in to comment.