In P1030R5 the render functions were named render_zero_terminated/render_not_zero_terminated and took an additional path_view_component as first argument.
In P1030R6 the names were changed to render_null_terminated/render_unterminated and the unnecessary first argument was removed.
This commit changed the names to the P1030R6 convention, however it left the first argument there.
I'll take a shot at this later today as its an obvious oversight from the transition free function => member function. I guess I'll also add the const qualifications proposed for R7.
In P1030R5 the render functions were named
render_zero_terminated
/render_not_zero_terminated
and took an additionalpath_view_component
as first argument.In P1030R6 the names were changed to
render_null_terminated
/render_unterminated
and the unnecessary first argument was removed.This commit changed the names to the P1030R6 convention, however it left the first argument there.