From de065da25e009fc5375fcd2039bfecb0b626266c Mon Sep 17 00:00:00 2001 From: ZhilkinSerg Date: Wed, 11 Dec 2019 00:31:56 +0300 Subject: [PATCH] Made global variables static (land_use_code) --- src/omdata.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/omdata.h b/src/omdata.h index b2b5a1755c8db..cd6c102fbe85e 100644 --- a/src/omdata.h +++ b/src/omdata.h @@ -36,10 +36,10 @@ class overmap_special; using overmap_special_id = string_id; -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