Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Chin committed Sep 3, 2021
1 parent fd684b1 commit eaa50ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/weakpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void weakpoints::clear()

void weakpoints::load( const JsonArray &ja )
{
for( const JsonObject &jo : ja ) {
for( const JsonObject jo : ja ) {
weakpoint tmp;
tmp.load( jo );
weakpoint_list.push_back( std::move( tmp ) );
Expand Down

0 comments on commit eaa50ef

Please sign in to comment.