From ef3505db59ffdadf4d2f0acb5ba5ff45b5505aea Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 1 Nov 2021 04:44:07 +0200 Subject: [PATCH] Disable -Wtype-limits for g++ 4.4 in Jamfile --- test/Jamfile.v2 | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 510db53..0b6e54b 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -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 + : : : gcc-4.4:-Wno-type-limits ; +run sv_find_last_of_test.cpp + : : : gcc-4.4:-Wno-type-limits ; +run sv_find_first_not_of_test.cpp + : : : gcc-4.4:-Wno-type-limits ; +run sv_find_last_not_of_test.cpp + : : : gcc-4.4:-Wno-type-limits ; run sv_contains_test.cpp ; run sv_eq_test.cpp ; run sv_lt_test.cpp ;