Skip to content

Commit 8e638bb

Browse files
committed
Fixing type error.
1 parent 8e18490 commit 8e638bb

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

test/future_when_any_arguments_tests.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_with_one_argument) {
3636

3737
BOOST_REQUIRE(!result.is_ready());
3838
default_executor(std::move(p0));
39-
BOOST_REQUIRE((std::pair{0, 0} == await(std::move(result))));
39+
BOOST_REQUIRE((std::pair{0, std::size_t{0}} == await(std::move(result))));
4040
}
4141

4242
BOOST_AUTO_TEST_CASE(future_when_any_multiple_arguments_first_succeeds) {
@@ -52,7 +52,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_multiple_arguments_first_succeeds) {
5252

5353
BOOST_REQUIRE(!result.is_ready());
5454
default_executor(std::move(p0));
55-
BOOST_REQUIRE((std::pair{0, 0} == await(std::move(result))));
55+
BOOST_REQUIRE((std::pair{0, std::size_t{0}} == await(std::move(result))));
5656
}
5757

5858
BOOST_AUTO_TEST_CASE(future_when_any_multiple_arguments_third_succeeds) {
@@ -68,7 +68,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_multiple_arguments_third_succeeds) {
6868

6969
BOOST_REQUIRE(!result.is_ready());
7070
default_executor(std::move(p2));
71-
BOOST_REQUIRE((std::pair{2, 2} == await(std::move(result))));
71+
BOOST_REQUIRE((std::pair{2, std::size_t{2}} == await(std::move(result))));
7272
}
7373

7474
BOOST_AUTO_TEST_CASE(future_when_any_one_succeeds_all_others_fail) {
@@ -87,7 +87,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_one_succeeds_all_others_fail) {
8787
p3.set_exception(std::make_exception_ptr(test_exception("failure")));
8888
BOOST_REQUIRE(!result.is_ready());
8989
default_executor(std::move(p2));
90-
BOOST_REQUIRE((std::pair{2, 2} == await(std::move(result))));
90+
BOOST_REQUIRE((std::pair{2, std::size_t{2}} == await(std::move(result))));
9191
}
9292

9393
BOOST_AUTO_TEST_CASE(future_when_any_all_fail) {
@@ -132,7 +132,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_int_arguments_with_diamond_formation_argume
132132

133133
BOOST_REQUIRE(!result.is_ready());
134134
default_executor(std::move(initial_promise));
135-
BOOST_REQUIRE((std::pair{43, 0} == await(std::move(result))));
135+
BOOST_REQUIRE((std::pair{43, std::size_t{0}} == await(std::move(result))));
136136
}
137137

138138
BOOST_AUTO_TEST_SUITE_END()
@@ -148,7 +148,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_move_only_arguments) {
148148

149149
BOOST_REQUIRE(!result.is_ready());
150150
default_executor(std::move(p0));
151-
BOOST_REQUIRE((std::pair{move_only(0), 0} == await(std::move(result))));
151+
BOOST_REQUIRE((std::pair{move_only(0), std::size_t{0}} == await(std::move(result))));
152152
}
153153

154154
BOOST_AUTO_TEST_SUITE_END()

test/future_when_any_range_tests.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_int_void_range_with_one_element) {
7575

7676
BOOST_REQUIRE(!result.is_ready());
7777
default_executor(std::move(p0));
78-
BOOST_REQUIRE((std::pair{0, 0} == await(std::move(result))));
78+
BOOST_REQUIRE((std::pair{0, std::size_t{0}} == await(std::move(result))));
7979
}
8080

8181
BOOST_AUTO_TEST_CASE(future_when_any_int_void_range_with_many_elements_first_succeeds) {
@@ -93,7 +93,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_int_void_range_with_many_elements_first_suc
9393

9494
BOOST_REQUIRE(!result.is_ready());
9595
default_executor(std::move(p0));
96-
BOOST_REQUIRE((std::pair{0, 0} == await(std::move(result))));
96+
BOOST_REQUIRE((std::pair{0, std::size_t{0}} == await(std::move(result))));
9797
}
9898

9999
BOOST_AUTO_TEST_CASE(future_when_any_int_void_range_with_many_elements_middle_succeeds) {
@@ -111,7 +111,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_int_void_range_with_many_elements_middle_su
111111

112112
BOOST_REQUIRE(!result.is_ready());
113113
default_executor(std::move(p2));
114-
BOOST_REQUIRE((std::pair{2, 2} == await(std::move(result))));
114+
BOOST_REQUIRE((std::pair{2, std::size_t{2}} == await(std::move(result))));
115115
}
116116

117117
BOOST_AUTO_TEST_CASE(
@@ -133,7 +133,7 @@ BOOST_AUTO_TEST_CASE(
133133
p3.set_exception(std::make_exception_ptr(test_exception("failure")));
134134
BOOST_REQUIRE(!result.is_ready());
135135
default_executor(std::move(p2));
136-
BOOST_REQUIRE((std::pair{2, 2} == await(std::move(result))));
136+
BOOST_REQUIRE((std::pair{2, std::size_t{2}} == await(std::move(result))));
137137
}
138138

139139
BOOST_AUTO_TEST_CASE(future_when_any_void_all_are_ready_at_the_beginning) {
@@ -183,7 +183,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_void_range_with_diamond_formation_elements)
183183

184184
BOOST_REQUIRE(!result.is_ready());
185185
default_executor(std::move(initial_promise));
186-
BOOST_REQUIRE((std::pair{43, 0} == await(std::move(result))));
186+
BOOST_REQUIRE((std::pair{43, std::size_t{0}} == await(std::move(result))));
187187
}
188188
BOOST_AUTO_TEST_SUITE_END()
189189

@@ -201,7 +201,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_range_move_only) {
201201

202202
BOOST_REQUIRE(!result.is_ready());
203203
default_executor(std::move(p0));
204-
BOOST_REQUIRE((std::pair{move_only(0), 0} == await(std::move(result))));
204+
BOOST_REQUIRE((std::pair{move_only(0), std::size_t{0}} == await(std::move(result))));
205205
}
206206

207207
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)