File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- set ( stlab_Clang_base_flags -Wall -Werror -ftemplate-backtrace-limit=0 -DBOOST_NO_AUTO_PTR=1 )
2
- set ( stlab_Clang_debug_flags -gdwarf-3 )
3
- set ( stlab_Clang_coverage_flags --coverage )
4
- set ( stlab_Clang_release_flags )
1
+ set (stlab_Clang_base_flags -Wall -Werror -ftemplate-backtrace-limit=0)
2
+ set (stlab_Clang_debug_flags -gdwarf-3)
3
+ set (stlab_Clang_coverage_flags --coverage)
4
+ set (stlab_Clang_release_flags)
5
5
6
6
string (CONCAT generator
7
7
"${stlab_Clang_base_flags} ;"
8
8
"$<$<OR:$<CONFIG:DEBUG>,"
9
- "$<CONFIG:RELWITHDEBINFO>>:${stlab_Clang_debug_flags} ;>"
9
+ "$<CONFIG:RELWITHDEBINFO>>:${stlab_Clang_debug_flags} ;>"
10
10
"$<$<OR:$<CONFIG:RELEASE>,"
11
- "$<CONFIG:RELWITHDEBINFO>,"
12
- "$<CONFIG:MINSIZEREL>>:${stlab_Clang_release_flags} ;>"
11
+ "$<CONFIG:RELWITHDEBINFO>,"
12
+ "$<CONFIG:MINSIZEREL>>:${stlab_Clang_release_flags} ;>"
13
13
"$<$<AND:$<CONFIG:DEBUG>,"
14
- "$<BOOL:${stlab.coverage}>>:${stlab_Clang_debug_flags} ;>" )
14
+ "$<BOOL:${stlab.coverage}>>:${stlab_Clang_debug_flags} ;>" )
15
15
16
16
target_compile_options (development INTERFACE
17
17
$<$<CXX_COMPILER_ID:Clang>:${generator} >)
Original file line number Diff line number Diff line change @@ -795,7 +795,7 @@ BOOST_AUTO_TEST_CASE(future_continuation_async_move_only_container) {
795
795
check_valid_future (sut);
796
796
auto result = stlab::await (std::move (sut));
797
797
798
- BOOST_REQUIRE_EQUAL (3 , result.size ());
798
+ BOOST_REQUIRE_EQUAL (std:: size_t { 3 } , result.size ());
799
799
BOOST_REQUIRE_EQUAL (10 , result[0 ].member ());
800
800
BOOST_REQUIRE_EQUAL (42 , result[1 ].member ());
801
801
BOOST_REQUIRE_EQUAL (50 , result[2 ].member ());
You can’t perform that action at this time.
0 commit comments