Skip to content

Commit

Permalink
Per #2706, switch from writing 'Not set' with embedded whitespace to …
Browse files Browse the repository at this point in the history
…using the na_str variable instead.
  • Loading branch information
JohnHalleyGotway committed Nov 17, 2023
1 parent b064df5 commit 22bcbaf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/libcode/vx_shapedata/mode_conf_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ class ModeConfInfo {

bool is_multivar();

ConcatString fcst_multivar_logic;
ConcatString obs_multivar_logic;
IntArray fcst_multivar_compare_index;
IntArray obs_multivar_compare_index;
ConcatStringfcst_multivar_logic;
ConcatString obs_multivar_logic;
IntArray fcst_multivar_compare_index;
IntArray obs_multivar_compare_index;
ConcatString fcst_multivar_name;
ConcatString fcst_multivar_level;
ConcatString obs_multivar_name;
Expand Down
8 changes: 4 additions & 4 deletions src/tools/core/mode/mode_exec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -673,11 +673,11 @@ void ModeExecutive::setup_fcst_data(const Grid &verification_grid)

// store the input data units
funits = engine.conf_info.Fcst->var_info->units();
ounits = "Not set";
ounits = na_str;

// store the input data level
flevel = engine.conf_info.Fcst->var_info->level_name();
olevel = "Not set";
olevel = na_str;

//
// done
Expand Down Expand Up @@ -751,11 +751,11 @@ void ModeExecutive::setup_obs_data(const Grid &verification_grid)
engine.conf_info.set_perc_thresh(Obs_sd.data);

// store the input data units
funits = "Not set";
funits = na_str;
ounits = engine.conf_info.Obs->var_info->units();

// store the input data level
flevel = "Not set";
flevel = na_str;
olevel = engine.conf_info.Obs->var_info->level_name();

//
Expand Down

0 comments on commit 22bcbaf

Please sign in to comment.