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 Nov 6, 2024
1 parent 030d8a5 commit 12c77c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions include/seqan3/io/sam_file/header.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ class sam_file_header
/*!\brief Construct from a range of reference ids which is moved into the `ref_ids_ptr` (owning).
* \param[in] ref_ids The range over reference ids.
*/
sam_file_header(ref_ids_type ref_ids) :
ref_ids_ptr{std::make_unique<ref_ids_type>(std::move(ref_ids))}
sam_file_header(ref_ids_type ref_ids) : ref_ids_ptr{std::make_unique<ref_ids_type>(std::move(ref_ids))}
{}
//!\}

Expand Down
9 changes: 5 additions & 4 deletions include/seqan3/io/sam_file/output.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,10 +772,11 @@ sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type

//!\brief Deduces ref_ids_type from input. Valid formats, and selected_field_ids are set to the default.
template <std::ranges::forward_range ref_ids_type, std::ranges::forward_range ref_lengths_type>
sam_file_output(std::filesystem::path const &, ref_ids_type &&, ref_lengths_type &&)
-> sam_file_output<typename sam_file_output<>::selected_field_ids,
typename sam_file_output<>::valid_formats,
std::remove_reference_t<ref_ids_type>>;
sam_file_output(std::filesystem::path const &,
ref_ids_type &&,
ref_lengths_type &&) -> sam_file_output<typename sam_file_output<>::selected_field_ids,
typename sam_file_output<>::valid_formats,
std::remove_reference_t<ref_ids_type>>;

//!\brief Deduces selected_field_ids, the valid format, and the ref_ids_type from input.
template <output_stream stream_type,
Expand Down

0 comments on commit 12c77c0

Please sign in to comment.