Skip to content

Commit

Permalink
Merge pull request #3164 from eseiler/fix/14
Browse files Browse the repository at this point in the history
[FIX] gcc14
  • Loading branch information
eseiler authored Jul 11, 2023
2 parents 6d1a334 + e800a25 commit 342c5e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions include/seqan3/alphabet/quality/phred_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

#pragma once

#include <algorithm>

#include <seqan3/alphabet/alphabet_base.hpp>
#include <seqan3/alphabet/detail/convert.hpp>
#include <seqan3/alphabet/quality/concept.hpp>
Expand Down
5 changes: 3 additions & 2 deletions test/performance/search/index_construction_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ static constexpr size_t seed{0x6126f};
static void arguments(benchmark::internal::Benchmark * b)
{
#ifndef NDEBUG
for (int32_t length : {50, 5000})
constexpr std::array<int32_t, 2> values{50, 5000};
#else
for (int32_t length : {50, 5000, 50'000})
constexpr std::array<int32_t, 3> values{50, 5000, 50'000};
#endif // NDEBUG
for (int32_t length : values)
{
if (length > max_length)
throw std::logic_error{"Increase max_length to at least " + std::to_string(length)};
Expand Down

1 comment on commit 342c5e1

@vercel
Copy link

@vercel vercel bot commented on 342c5e1 Jul 11, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

seqan3 – ./

seqan3.vercel.app
seqan3-seqan.vercel.app
seqan3-git-master-seqan.vercel.app

Please sign in to comment.