Skip to content

Commit

Permalink
[MISC] clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed May 31, 2022
1 parent 9bf99bc commit efb8e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/seqan3/utility/views/interleave.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ class view_interleave : public std::ranges::view_interface<view_interleave<urng_
using size_type = std::ranges::range_size_t<urng_t>;
//!\brief The reference_type.
using reference = std::ranges::common_reference_t<std::ranges::range_reference_t<urng_t>,
std::ranges::range_reference_t<inserted_rng_t>>;
std::ranges::range_reference_t<inserted_rng_t>>;
//!\brief The const_reference type is equal to the reference type.
using const_reference = detail::transformation_trait_or_t<
std::ranges::common_reference<std::ranges::range_reference_t<urng_t const>,
std::ranges::range_reference_t<inserted_rng_t const>>,
std::ranges::range_reference_t<inserted_rng_t const>>,
void>;
//!\brief The value_type (which equals the reference_type with any references removed).
using value_type = std::ranges::range_value_t<urng_t>;
Expand Down

0 comments on commit efb8e10

Please sign in to comment.