Skip to content

Commit ea41708

Browse files
committed
deque prepend_range compilation should not return with typed value
1 parent 3123d0d commit ea41708

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/fast_io_dsal/impl/deque.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ class deque FAST_IO_TRIVIALLY_RELOCATABLE_IF_ELIGIBLE
25632563
{
25642564
return;
25652565
}
2566-
return this->insert_range_front_impl(0, ::std::forward<R>(rg), this->size(), rgsize);
2566+
this->insert_range_front_impl(0, ::std::forward<R>(rg), this->size(), rgsize);
25672567
}
25682568
else
25692569
{

0 commit comments

Comments
 (0)