Skip to content

Commit

Permalink
Update include_all_in_one
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed Nov 25, 2021
1 parent ecf7072 commit c260c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include_all_in_one/include/fplus/fplus.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3084,7 +3084,7 @@ namespace internal
typedef std::back_insert_iterator<std::array<T, N>> base_type;
explicit array_back_insert_iterator(std::array<T, N>& arr) :
base_type(arr), arr_ptr_(&arr), pos_(0) {}
array_back_insert_iterator<T, N>(const array_back_insert_iterator<T, N>& other) :
array_back_insert_iterator(const array_back_insert_iterator<T, N>& other) :
base_type(*other.arr_ptr_), arr_ptr_(other.arr_ptr_), pos_(other.pos_) {}
array_back_insert_iterator<T, N>& operator=(const array_back_insert_iterator<T, N>& other)
{
Expand Down

0 comments on commit c260c36

Please sign in to comment.