Skip to content

Commit

Permalink
Merge pull request #255 from eseiler/misc/constexpr_comp
Browse files Browse the repository at this point in the history
[MISC] Make IBF operator== conditionally constexpr
  • Loading branch information
eseiler authored Dec 10, 2024
2 parents 4df28ad + 9ce3514 commit 239b446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/hibf/interleaved_bloom_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ class interleaved_bloom_filter : private seqan::hibf::bit_vector
/*!\name Comparison operators
* \{
*/
constexpr bool operator==(interleaved_bloom_filter const &) const = default;
HIBF_CONSTEXPR_VECTOR bool operator==(interleaved_bloom_filter const &) const = default;
//!\}

/*!\name Access
Expand Down

0 comments on commit 239b446

Please sign in to comment.