print_vector_on add space after separator

This commit is contained in:
diego.mateos 2024-01-25 16:18:39 +01:00
parent 24123f3b06
commit 325f6b2356

View file

@ -199,7 +199,7 @@ namespace detail
{
os << std::setw(static_cast<int>(fmt.width)) << a[i];
if(components-1 != i)
os << fmt.separator;
os << fmt.separator << fmt.space;
}
os << fmt.delim_right;