Skip to content

Commit a80d01c

Browse files
committed
Forget to upload removed version for ::std since it breaks CI
1 parent 171b2fe commit a80d01c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/fast_io_dsal/impl/deque.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,17 +1079,17 @@ class deque FAST_IO_TRIVIALLY_RELOCATABLE_IF_ELIGIBLE
10791079
}
10801080
else
10811081
{
1082-
::std::uninitialized_default_construct(controller.front_block.curr_ptr, controller.front_block.end_ptr);
1082+
::fast_io::freestanding::uninitialized_default_construct(controller.front_block.curr_ptr, controller.front_block.end_ptr);
10831083
this->controller.back_block.curr_ptr = this->controller.back_block.end_ptr;
10841084
for (T **it{front_controller_ptr + 1}, **ed{back_controller_ptr}; it != ed; ++it)
10851085
{
10861086
T *blockptr{*it};
1087-
::std::uninitialized_default_construct(blockptr, blockptr + block_size);
1087+
::fast_io::freestanding::uninitialized_default_construct(blockptr, blockptr + block_size);
10881088
this->controller.back_block = {it, blockptr, blockptr + block_size, blockptr + block_size};
10891089
}
10901090
lastblockbegin = dq_back_backup.begin_ptr;
10911091
}
1092-
::std::uninitialized_default_construct(lastblockbegin, dq_back_backup.curr_ptr);
1092+
::fast_io::freestanding::uninitialized_default_construct(lastblockbegin, dq_back_backup.curr_ptr);
10931093
this->controller.back_block = dq_back_backup;
10941094
des.thisdeq = nullptr;
10951095
}

0 commit comments

Comments
 (0)