Skip to content

Commit

Permalink
Consistent naming: "omw" just like in the other function
Browse files Browse the repository at this point in the history
  • Loading branch information
BevapDin committed Feb 1, 2020
1 parent 7fc22f4 commit 13da7e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mapgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ class mapgen_factory
}
}
void check_consistency() {
for( std::pair<const std::string, mapgen_basic_container> &oter_definition : mapgens_ ) {
oter_definition.second.check_consistency( oter_definition.first );
for( std::pair<const std::string, mapgen_basic_container> &omw : mapgens_ ) {
omw.second.check_consistency( omw.first );
}
}
bool has( const std::string &key ) const {
Expand Down

0 comments on commit 13da7e5

Please sign in to comment.