Skip to content

Commit 36c2235

Browse files
authored
Merge pull request seqan#292 from eseiler/infra/fix
[INFRA] Small fixes
2 parents cdf1a26 + d3d4328 commit 36c2235

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cron_iwyu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch'
2828
container:
29-
image: ghcr.io/seqan/clang-latest
29+
image: ghcr.io/seqan/iwyu
3030
steps:
3131
- name: Run IWYU
3232
uses: seqan/actions/iwyu@main

include/hibf/interleaved_bloom_filter.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -607,10 +607,10 @@ class interleaved_bloom_filter::counting_agent_type
607607
result_buffer.data() + result_buffer.size(),
608608
result_buffer.data() + result_buffer.capacity());
609609
# else
610-
std::__annotate_contiguous_container<allocator_t>(result_buffer.data(),
611-
result_buffer.data() + result_buffer.capacity(),
612-
result_buffer.data() + result_buffer.size(),
613-
result_buffer.data() + result_buffer.capacity());
610+
std::__annotate_contiguous_container<allocator_type>(result_buffer.data(),
611+
result_buffer.data() + result_buffer.capacity(),
612+
result_buffer.data() + result_buffer.size(),
613+
result_buffer.data() + result_buffer.capacity());
614614
# endif
615615
# endif
616616
# endif

0 commit comments

Comments
 (0)