Skip to content

Commit

Permalink
Remove const modifiers in function declarations
Browse files Browse the repository at this point in the history
Co-Authored-By: ZhilkinSerg <ZhilkinSerg@users.noreply.github.com>
  • Loading branch information
Qrox and ZhilkinSerg committed Jan 24, 2020
1 parent a6a9ff1 commit c2e215a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/computer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ void computer::set_mission( const int id )
mission_id = id;
}

static computer_action computer_action_from_legacy_enum( const int val );
static computer_failure_type computer_failure_type_from_legacy_enum( const int val );
static computer_action computer_action_from_legacy_enum( int val );
static computer_failure_type computer_failure_type_from_legacy_enum( int val );

void computer::load_legacy_data( const std::string &data )
{
Expand Down

0 comments on commit c2e215a

Please sign in to comment.