Skip to content

Commit ca50c2e

Browse files
authored
Merge Pull Request #229 from E3SM-Project/EKAT/bartgol/fix-226
Automatically Merged using E3SM Pull Request AutoTester PR Title: Fix warning related to poinless comparison of unsigned int PR Author: bartgol
2 parents 28529f2 + 34286d2 commit ca50c2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ekat/util/ekat_string_utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ bool valid_nested_list_format (const std::string& str)
124124
// We verified the string starts with '['.
125125
size_t start = 1;
126126
char last_match = open;
127-
size_t num_open = 1;
127+
int num_open = 1;
128128
size_t pos = str.find_first_of(separators,start);
129129

130130
while (pos!=npos) {

0 commit comments

Comments
 (0)