Commit 5b63af27 authored by Dominik Charousset's avatar Dominik Charousset

Fix function signature

parent 2c1e56f5
...@@ -64,7 +64,7 @@ std::string join(InputIterator first, InputIterator last, string_view glue) { ...@@ -64,7 +64,7 @@ std::string join(InputIterator first, InputIterator last, string_view glue) {
} }
template <class Container> template <class Container>
std::string join(const Container& c, const std::string& glue) { std::string join(const Container& c, string_view glue) {
return join(c.begin(), c.end(), glue); return join(c.begin(), c.end(), glue);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment