Skip to content

Commit 2598f09

Browse files
committed
correcting rebase issue in histogram diagnostics
1 parent 26f9853 commit 2598f09

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

components/eamxx/src/share/io/eamxx_io_utils.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,8 @@ create_diagnostic (const std::string& diag_field_name,
148148
std::regex zonal_avg (R"()" + generic_field + R"(_zonal_avg_(\d+)_bins$)");
149149
std::regex conditional_sampling (R"()" + generic_field + R"(_where_)" + generic_field + R"(_(gt|ge|eq|ne|le|lt)_([+-]?\d+(?:\.\d+)?)$)");
150150
std::regex binary_ops (generic_field + "_" "(plus|minus|times|over)" + "_" + generic_field + "$");
151-
<<<<<<< HEAD
152-
std::regex vert_derivative (generic_field + "_(p|z)vert_derivative$");
153-
=======
154151
std::regex histogram (R"()" + generic_field + R"(_histogram_(\d+(\.\d+)?(_\d+(\.\d+)?)+)$)");
155-
>>>>>>> d7d46fa74e (added regex to eamxx_io_utils for histogram diag)
152+
std::regex vert_derivative (generic_field + "_(p|z)vert_derivative$");
156153

157154
std::string diag_name;
158155
std::smatch matches;

0 commit comments

Comments
 (0)