1
0
forked from boostorg/core

Disable -Wtype-limits for g++ 4.4 in Jamfile

This commit is contained in:
Peter Dimov
2021-11-01 04:44:07 +02:00
parent f94db671f6
commit ef3505db59

View File

@ -287,10 +287,14 @@ run sv_starts_with_test.cpp ;
run sv_ends_with_test.cpp ;
run sv_find_test.cpp ;
run sv_rfind_test.cpp ;
run sv_find_first_of_test.cpp ;
run sv_find_last_of_test.cpp ;
run sv_find_first_not_of_test.cpp ;
run sv_find_last_not_of_test.cpp ;
run sv_find_first_of_test.cpp
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
run sv_find_last_of_test.cpp
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
run sv_find_first_not_of_test.cpp
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
run sv_find_last_not_of_test.cpp
: : : <toolset>gcc-4.4:<cxxflags>-Wno-type-limits ;
run sv_contains_test.cpp ;
run sv_eq_test.cpp ;
run sv_lt_test.cpp ;