Added missing "std::".

This commit is contained in:
Patrick 2023-11-13 11:34:22 +01:00
parent 463890cfcb
commit dff7b30b2d

View File

@ -37,7 +37,7 @@ std::string join(const TRange& elements, const char* const delimiter)
if (first != last)
{
std::copy(first, std::prev(last), std::ostream_iterator<TValue>(oss, delimiter));
first = prev(last);
first = std::prev(last);
}
if (first != last)
{