Skip to content

Commit

Permalink
fix missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
tcclevenger committed Nov 18, 2024
1 parent 37ba461 commit b1c0213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/eamxx/src/control/atmosphere_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ void AtmosphereDriver::create_fields()
bool mismatch_found = false;

const auto reqs = fr.second;
const bool is_first_turb_advect = ekat::contains(reqs.front().groups, "turbulence_advected_tracers")
const bool is_first_turb_advect = ekat::contains(reqs.front().groups, "turbulence_advected_tracers");
for (size_t i=1; i<reqs.size(); ++i) {
const bool is_turb_advect = ekat::contains(reqs[i].groups, "turbulence_advected_tracers");
if (is_turb_advect != is_first_turb_advect) {
Expand Down

0 comments on commit b1c0213

Please sign in to comment.