Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Jul 26, 2024
1 parent f673c5e commit 35122ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/seqan3/alphabet/adaptation/char.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ namespace seqan3::detail
//!\ingroup alphabet_adaptation
//!\hideinitializer
template <typename type>
constexpr bool is_char_adaptation_v = std::same_as<type, char> || std::same_as<type, char8_t> ||
std::same_as<type, char16_t> || std::same_as<type, char32_t> ||
std::same_as<type, wchar_t>;
constexpr bool is_char_adaptation_v =
std::same_as<type, char> || std::same_as<type, char8_t> || std::same_as<type, char16_t>
|| std::same_as<type, char32_t> || std::same_as<type, wchar_t>;
} // namespace seqan3::detail

namespace seqan3::custom
Expand Down

0 comments on commit 35122ae

Please sign in to comment.