From de922921408bc7116a3c7c67b2fcfbe3e3214f3b Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Sun, 31 Mar 2019 20:12:53 +0300 Subject: [PATCH] Tests: Fix C1128 error on msvc-14.1+ traits_test fails on msvc-14.1+ in 64bit debug mode with C1128 error Fixes #15 --- test/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d4fc25a..16f3eba 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -19,7 +19,7 @@ project numeric_conversion_unit_tests test-suite minimal : [ run bounds_test.cpp ] - [ run traits_test.cpp ] + [ run traits_test.cpp : : : msvc:/bigobj ] [ run converter_test.cpp ] [ run udt_support_test.cpp ] [ run numeric_cast_test.cpp ]