ned14 / llfio

P1031 low level file i/o and filesystem library for the C++ standard
https://ned14.github.io/llfio/
Other
880 stars 45 forks source link

`render` functions do not match P1030R6 #139

Closed sneves closed 2 months ago

sneves commented 3 months ago

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.

BurningEnlightenment commented 3 months ago

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.