@@ -461,7 +461,7 @@ namespace ice
461461 .size = ice::size_of<Type> * head_space,
462462 .alignment = ice::align_of<Type>
463463 },
464- ice::span:: data (items ),
464+ items. data (),
465465 head_space
466466 );
467467 ice::mem_copy_construct_n_at<Type>(
@@ -470,7 +470,7 @@ namespace ice
470470 .size = ice::size_of<Type> * tail_space,
471471 .alignment = ice::align_of<Type>
472472 },
473- ice::span:: data (items ) + head_space,
473+ items. data () + head_space,
474474 tail_space
475475 );
476476 }
@@ -483,7 +483,7 @@ namespace ice
483483 .alignment = ice::align_of<Type>
484484 },
485485 Data{
486- .location = ice::span:: data (items ),
486+ .location = items. data (),
487487 .size = ice::size_of<Type> * head_space,
488488 .alignment = ice::align_of<Type>
489489 }
@@ -495,7 +495,7 @@ namespace ice
495495 .alignment = ice::align_of<Type>
496496 },
497497 Data{
498- .location = ice::span:: data (items ) + head_space,
498+ .location = items. data () + head_space,
499499 .size = ice::size_of<Type> * tail_space,
500500 .alignment = ice::align_of<Type>
501501 }
@@ -605,13 +605,13 @@ namespace ice
605605
606606 if constexpr (Logic == ContainerLogic::Complex)
607607 {
608- ice::mem_move_n_to (ice::span:: begin (out_values ), queue._data + queue._offset , first_part_count);
609- ice::mem_move_n_to (ice::span:: begin (out_values ) + first_part_count, queue._data , second_part);
608+ ice::mem_move_n_to (out_values. begin (), queue._data + queue._offset , first_part_count);
609+ ice::mem_move_n_to (out_values. begin () + first_part_count, queue._data , second_part);
610610 }
611611 else
612612 {
613- ice::memcpy (ice::span:: begin (out_values ), queue._data + queue._offset , first_part_count * sizeof (Type));
614- ice::memcpy (ice::span:: begin (out_values ) + first_part_count, queue._data , second_part * sizeof (Type));
613+ ice::memcpy (out_values. begin (), queue._data + queue._offset , first_part_count * sizeof (Type));
614+ ice::memcpy (out_values. begin () + first_part_count, queue._data , second_part * sizeof (Type));
615615 }
616616
617617 ice::queue::pop_front (queue, taken_items);
0 commit comments