@@ -36,7 +36,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_with_one_argument) {
36
36
37
37
BOOST_REQUIRE (!result.is_ready ());
38
38
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))));
40
40
}
41
41
42
42
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) {
52
52
53
53
BOOST_REQUIRE (!result.is_ready ());
54
54
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))));
56
56
}
57
57
58
58
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) {
68
68
69
69
BOOST_REQUIRE (!result.is_ready ());
70
70
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))));
72
72
}
73
73
74
74
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) {
87
87
p3.set_exception (std::make_exception_ptr (test_exception (" failure" )));
88
88
BOOST_REQUIRE (!result.is_ready ());
89
89
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))));
91
91
}
92
92
93
93
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
132
132
133
133
BOOST_REQUIRE (!result.is_ready ());
134
134
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))));
136
136
}
137
137
138
138
BOOST_AUTO_TEST_SUITE_END ()
@@ -148,7 +148,7 @@ BOOST_AUTO_TEST_CASE(future_when_any_move_only_arguments) {
148
148
149
149
BOOST_REQUIRE (!result.is_ready ());
150
150
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))));
152
152
}
153
153
154
154
BOOST_AUTO_TEST_SUITE_END ()
0 commit comments