Skip to content

Commit

Permalink
[FIX] Remove name clashes
Browse files Browse the repository at this point in the history
  • Loading branch information
marehr committed Aug 13, 2020
1 parent f842c5c commit 1817a22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,13 +543,13 @@ namespace seqan3::align_cfg
*/
template <typename end_gaps_t>
//!\cond
requires detail::is_type_specialisation_of_v<end_gaps_t, end_gaps>
requires seqan3::detail::is_type_specialisation_of_v<end_gaps_t, end_gaps>
//!\endcond
struct aligned_ends : public pipeable_config_element<aligned_ends<end_gaps_t>, end_gaps_t>
{
//!\privatesection
//!\brief Internal id to check for consistent configuration settings.
static constexpr detail::align_config_id id{detail::align_config_id::aligned_ends};
static constexpr seqan3::detail::align_config_id id{seqan3::detail::align_config_id::aligned_ends};
};

/*!\name Type deduction guides
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ namespace seqan3::align_cfg
*/
template <typename alignment_result_t>
//!\cond
requires detail::is_type_specialisation_of_v<alignment_result_t, alignment_result>
requires seqan3::detail::is_type_specialisation_of_v<alignment_result_t, alignment_result>
//!\endcond
inline constexpr detail::alignment_result_capture_element<alignment_result_t> alignment_result_capture{};
inline constexpr seqan3::detail::alignment_result_capture_element<alignment_result_t> alignment_result_capture{};
} // namespace seqan3::align_cfg

Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class band_fixed_size : public pipeable_config_element<band_fixed_size>

//!\privatesection
//!\brief Internal id to check for consistent configuration settings.
static constexpr detail::align_config_id id{detail::align_config_id::band};
static constexpr seqan3::detail::align_config_id id{seqan3::detail::align_config_id::band};
};

} // namespace seqan3::align_cfg

0 comments on commit 1817a22

Please sign in to comment.