add last backwards-compatible version

This commit is contained in:
2021-12-14 00:33:46 -07:00
parent 68b10d413b
commit b0dd3f07f3
335 changed files with 4746 additions and 19627 deletions

View File

@@ -28,10 +28,7 @@ public:
template<typename t_array> void get_configuration(t_array & p_out) {
PFC_STATIC_ASSERT( sizeof(p_out[0]) == 1 );
typedef pfc::array_t<t_uint8,pfc::alloc_fast_aggressive> t_temp; t_temp temp;
{
stream_writer_buffer_append_ref_t<t_temp> writer(temp);
get_configuration(&writer,fb2k::noAbort);
}
get_configuration(&stream_writer_buffer_append_ref_t<t_temp>(temp),abort_callback_dummy());
p_out = temp;
}
};