Skip to content

Commit 16742cf

Browse files
committed
Update dependencies
1 parent dceed93 commit 16742cf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dependencies/Catch2

Submodule Catch2 updated 54 files

test/benchmark.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ void test_ordering(thread_count const number_of_readers, thread_count const numb
6868
std::atomic<std::uint64_t> number_of_writes(0);
6969

7070
using value_type = int;
71-
auto const bulk_data_source = containers::vector<value_type>(containers::integer_range(bulk_size));
71+
auto const bulk_data_source = containers::vector<value_type>(containers::integer_range(static_cast<int>(bulk_size)));
7272
value_type const * const bulk_data_begin = containers::data(bulk_data_source);
7373
value_type const * const bulk_data_end = bulk_data_begin + containers::size(bulk_data_source);
7474

7575
auto create_threads = [](thread_count const count, auto const function) {
7676
return containers::dynamic_array<std::jthread>(containers::generate_n(
7777
count,
78-
[&] { return bounded::no_lazy_construction(std::jthread(function)); }
78+
[&] { return std::jthread(function); }
7979
));
8080
};
8181

0 commit comments

Comments
 (0)