Skip to content

Commit

Permalink
Remove default in MonsterGroupResult constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ymber committed May 30, 2020
1 parent e4d9a10 commit f299d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongroup.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct MonsterGroupResult {
MonsterGroupResult() : name( mtype_id::NULL_ID() ), pack_size( 0 ) {
}

MonsterGroupResult( const mtype_id &id, int new_pack_size, spawn_data new_data = spawn_data() )
MonsterGroupResult( const mtype_id &id, int new_pack_size, spawn_data new_data )
: name( id ), pack_size( new_pack_size ), data( new_data ) {
}
};
Expand Down

0 comments on commit f299d8e

Please sign in to comment.