Closed stotko closed 1 year ago
Patch coverage: 100.00
% and project coverage change: +0.01
:tada:
Comparison is base (
bc3adae
) 97.23% compared to head (914894e
) 97.24%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Although the
memory
module already supports custom allocators making it quite generic, the more advanced API related to automatically filled arrays still uses the default execution policies. Extendallocator_traits
byallocate_filled
anddeallocate_filled
functions that additionally take an execution policy as well as an initialization value as their arguments. This consolidates all required allocation functions in the traits and follows the recommended usage from the C++ standard.Issue: #351