Skip to content

Commit

Permalink
Merge pull request #2795 from marehr/clang24
Browse files Browse the repository at this point in the history
[FIX] clang+gcc9: error: call to non-static member function without an object argument
  • Loading branch information
eseiler committed Aug 24, 2021
2 parents d0dfc59 + ddcd72d commit 76c4508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/seqan3/alphabet/composite/alphabet_tuple_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class alphabet_tuple_base<derived_type, component_types...>::component_proxy : p
//!\brief The implementation updates the rank in the parent object.
constexpr void on_update() noexcept
{
parent->assign_component_rank<index>(to_rank());
parent->assign_component_rank<index>(this->to_rank());
}

public:
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/utility/simd/views/to_simd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class view_to_simd : public std::ranges::view_interface<view_to_simd<urng_t, sim
//!\brief The total number of chunks that can be cached.
static constexpr uint8_t total_chunks = fast_load ? (chunks_per_load * chunks_per_load) : 1;
//!\brief The alphabet size.
static constexpr auto alphabet_size = alphabet_size<std::ranges::range_value_t<inner_range_type>>;
static constexpr auto alphabet_size = seqan3::alphabet_size<std::ranges::range_value_t<inner_range_type>>;
//!\}

// Forward declare class' iterator type. See definition below.
Expand Down

1 comment on commit 76c4508

@vercel
Copy link

@vercel vercel bot commented on 76c4508 Aug 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.