Skip to content

Commit

Permalink
Made global variables static (land_use_code)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhilkinSerg committed Dec 10, 2019
1 parent 4cf27b9 commit de065da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/omdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ class overmap_special;

using overmap_special_id = string_id<overmap_special>;

const overmap_land_use_code_id land_use_code_forest( "forest" );
const overmap_land_use_code_id land_use_code_wetland( "wetland" );
const overmap_land_use_code_id land_use_code_wetland_forest( "wetland_forest" );
const overmap_land_use_code_id land_use_code_wetland_saltwater( "wetland_saltwater" );
static const overmap_land_use_code_id land_use_code_forest( "forest" );
static const overmap_land_use_code_id land_use_code_wetland( "wetland" );
static const overmap_land_use_code_id land_use_code_wetland_forest( "wetland_forest" );
static const overmap_land_use_code_id land_use_code_wetland_saltwater( "wetland_saltwater" );

/** Direction on the overmap. */
namespace om_direction
Expand Down

0 comments on commit de065da

Please sign in to comment.