From 39d97018573fa1d3a90d9b1e8408b882d30faf87 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 28 Mar 2017 19:30:48 +0100 Subject: [PATCH] Enable one more noexcept test --- test/gcd_constexpr14_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gcd_constexpr14_test.cpp b/test/gcd_constexpr14_test.cpp index e915ce8..943af8c 100644 --- a/test/gcd_constexpr14_test.cpp +++ b/test/gcd_constexpr14_test.cpp @@ -27,7 +27,7 @@ void test_constexpr() void test_noexcept() { static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function."); - //static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function."); + static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function."); static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function."); static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function."); static_assert(noexcept(boost::integer::gcd(static_cast(2), static_cast(4))), "Expected a noexcept function.");