Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:ned14/llfio into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ned14 committed Dec 3, 2021
2 parents caea1a2 + b5d9ad8 commit d27d130
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/llfio/v2.0/path_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -827,11 +827,11 @@ class LLFIO_DECL path_view_component
//! Type of the iterator type
using iterator = typename _view_type::iterator;
//! Type of the const iterator type
using const_iterator = typename _view_type::const_iterator;
using const_iterator = typename _view_type::iterator;
//! Type of the reverse iterator type
using reverse_iterator = typename _view_type::reverse_iterator;
//! Type of the const reverse iterator type
using const_reverse_iterator = typename _view_type::const_reverse_iterator;
using const_reverse_iterator = typename _view_type::reverse_iterator;
//! Type of the size type
using size_type = typename _view_type::size_type;
//! Type of the difference type
Expand Down

0 comments on commit d27d130

Please sign in to comment.