Skip to content

Commit

Permalink
Merge Pull Request #255 from E3SM-Project/EKAT/bartgol/nano-fix-ekat-…
Browse files Browse the repository at this point in the history
…join

Automatically Merged using E3SM Pull Request AutoTester
PR Title: Allow ADL to kick in in ekat::join
PR Author: bartgol
  • Loading branch information
E3SM-Bot authored Oct 3, 2022
2 parents 741edc4 + 2a7ce78 commit dbe3d1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ekat/util/ekat_string_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ std::string upper_case (const std::string& s);
// E.g., if v is a vector of strings, out = v[0]+sep+v[1]+sep+...
template<typename Iterable>
std::string join (const Iterable& v, const std::string& sep) {
auto it = std::cbegin(v);
auto end = std::cend(v);
auto it = cbegin(v);
auto end = cend(v);
if (it==end) {
return "";
}
Expand Down

0 comments on commit dbe3d1c

Please sign in to comment.