Skip to content

Commit

Permalink
Fix various small_vector bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
lhecker committed Aug 12, 2022
1 parent b0f8456 commit efa468b
Show file tree
Hide file tree
Showing 4 changed files with 582 additions and 146 deletions.
2 changes: 1 addition & 1 deletion src/inc/til/rle.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace til // Terminal Implementation Library. Also: "Today I Learned"
using pointer = T*;
using reference = T&;
using size_type = S;
using difference_type = ptrdiff_t;
using difference_type = typename ParentIt::difference_type;

// TODO GH#10135: Enable checked iterators for _ITERATOR_DEBUG_LEVEL != 0.
explicit rle_iterator(ParentIt&& it) noexcept :
Expand Down
Loading

0 comments on commit efa468b

Please sign in to comment.