Skip to content

Commit

Permalink
Remove useless const (#36268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fris0uman authored and kevingranade committed Dec 19, 2019
1 parent b4d8131 commit b0ef2af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/item.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class item : public visitable<item>
*/
/*@{*/
static item make_corpse( const mtype_id &mt = string_id<mtype>::NULL_ID(),
time_point turn = calendar::turn, const std::string &name = "", const int upgrade_time = -1 );
time_point turn = calendar::turn, const std::string &name = "", int upgrade_time = -1 );
/*@}*/
/**
* @return The monster type associated with this item (@ref corpse). It is usually the
Expand Down

0 comments on commit b0ef2af

Please sign in to comment.