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 Sep 28, 2023
1 parent b0aa2e6 commit 66937c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions include/seqan3/io/sam_file/header.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ class sam_file_header
/*!\name Constructors, destructor and assignment
* \{
*/
sam_file_header() = default; //!< Defaulted.
sam_file_header(sam_file_header const &) = delete; //!< Deleted. Holds a unique_ptr.
sam_file_header() = default; //!< Defaulted.
sam_file_header(sam_file_header const &) = delete; //!< Deleted. Holds a unique_ptr.
sam_file_header & operator=(sam_file_header const &) = delete; //!< Deleted. Holds a unique_ptr.
sam_file_header(sam_file_header &&) = default; //!< Defaulted.
sam_file_header & operator=(sam_file_header &&) = default; //!< Defaulted.
~sam_file_header() = default; //!< Defaulted.
sam_file_header(sam_file_header &&) = default; //!< Defaulted.
sam_file_header & operator=(sam_file_header &&) = default; //!< Defaulted.
~sam_file_header() = default; //!< Defaulted.

/*!\brief Construct from a range of reference ids which redirects the `ref_ids_ptr` member (non-owning).
* \param[in] ref_ids The range over reference ids to redirect the pointer at.
Expand Down
4 changes: 2 additions & 2 deletions include/seqan3/utility/simd/detail/simd_algorithm_avx2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ constexpr simd_t extract_half_avx2(simd_t const & src)
template <uint8_t index, simd::simd_concept simd_t>
constexpr simd_t extract_quarter_avx2(simd_t const & src)
{
return reinterpret_cast<simd_t>(_mm256_castsi128_si256(
_mm_cvtsi64_si128(_mm256_extract_epi64(reinterpret_cast<__m256i const &>(src), index))));
return reinterpret_cast<simd_t>(
_mm256_castsi128_si256(_mm_cvtsi64_si128(_mm256_extract_epi64(reinterpret_cast<__m256i const &>(src), index))));
}

template <uint8_t index, simd::simd_concept simd_t>
Expand Down

0 comments on commit 66937c5

Please sign in to comment.