From 02cc561248c8da92d7974fa6b243d30dc5331079 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 28 Apr 2020 05:05:57 +0300 Subject: [PATCH] Only use warnings-as-errors on msvc, gcc, clang --- test/Jamfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Jamfile b/test/Jamfile index a3e2b4e..0ed0d68 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -361,4 +361,8 @@ compile-fail shared_from_fail.cpp ; compile-fail weak_from_fail.cpp ; compile sp_override_test.cpp ; -compile sp_pedantic_test.cpp : pedantic on ; +compile sp_pedantic_test.cpp + : pedantic + msvc:on + gcc:on + clang:on ;