Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhilkinSerg authored May 29, 2020
1 parent fa980f3 commit 7564eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npc.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class job_data
const std::pair<activity_id, int> &b ) {
return a.second > b.second;
} );
for( const std::pair<const activity_id, int> &elem : pairs ) {
for( const std::pair<activity_id, int> &elem : pairs ) {
ret.push_back( elem.first );
}
return ret;
Expand Down

0 comments on commit 7564eee

Please sign in to comment.