Skip to content

Commit

Permalink
Per #2123, remove hidden character that I'd accidentally inserted in …
Browse files Browse the repository at this point in the history
…the version string.
  • Loading branch information
JohnHalleyGotway committed Apr 7, 2022
1 parent a7b8373 commit a364b23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion met/src/basic/vx_util/string_fxns.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ using namespace std;


bool match_met_version(const char * check_version) {
bool match = false;

//
// Check if the major version numbers match.
//
ConcatString check_major(parse_version_major(check_version));
ConcatString met_major(parse_version_major(met_version));

return(check_major == met_major);
}

Expand Down
2 changes: 1 addition & 1 deletion met/src/basic/vx_util/util_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
////////////////////////////////////////////////////////////////////////

// Released versions of MET
static const char met_version_11_0_0[] = "V11.0.0";
static const char met_version_11_0_0[] = "V11.0.0";
static const char met_version_10_1_0[] = "V10.1.0";
static const char met_version_10_0_0[] = "V10.0.0";
static const char met_version_9_1[] = "V9.1";
Expand Down

0 comments on commit a364b23

Please sign in to comment.