Skip to content

Commit

Permalink
Remove extraneous newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
r-barnes committed Jul 5, 2023
1 parent 5520625 commit e821e7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/richdem/depressions/depression_hierarchy.hpp
Expand Up @@ -763,7 +763,7 @@ void CalculateMarginalVolumes(
}
}
progress.stop();
RDLOG_TIME_USE << "Time to calculate marginal volumes = " << progress.time_it_took() << " s" << std::endl;
RDLOG_TIME_USE << "Time to calculate marginal volumes = " << progress.time_it_took() << " s";
}

template <class elev_t>
Expand Down Expand Up @@ -795,7 +795,7 @@ void CalculateTotalVolumes(DepressionHierarchy<elev_t>& deps) {
assert(dep.lchild == NO_VALUE || fp_le(deps.at(dep.lchild).dep_vol + deps.at(dep.rchild).dep_vol, dep.dep_vol));
}
progress.stop();
RDLOG_TIME_USE << "Time to calculate total volumes = " << progress.time_it_took() << " s" << std::endl;
RDLOG_TIME_USE << "Time to calculate total volumes = " << progress.time_it_took() << " s";
}

// Utility function for doing various relabelings based on the depression
Expand Down

0 comments on commit e821e7a

Please sign in to comment.