Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elB4RTO committed Feb 17, 2024
1 parent bd22bbb commit f6de030
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions logdoctor/utilities/arrays.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
template <typename Array>
struct Zipperator
{
using array_value = Array::value_type;
using array_iterator = Array::iterator;
using array_value = typename Array::value_type;
using array_iterator = typename Array::iterator;

using iterator_category = std::forward_iterator_tag;
using difference_type = std::ptrdiff_t;
Expand Down Expand Up @@ -39,9 +39,9 @@ struct Zipperator
template <typename Array>
struct Enumerator
{
using array_size_t = Array::size_type;
using array_value = Array::value_type;
using array_iterator = Array::const_iterator;
using array_size_t = typename Array::size_type;
using array_value = typename Array::value_type;
using array_iterator = typename Array::const_iterator;

using iterator_category = std::forward_iterator_tag;
using difference_type = std::ptrdiff_t;
Expand Down

0 comments on commit f6de030

Please sign in to comment.