From ec02089d75e5029e908c9e9e3e983309ad0d62e9 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 15 Jun 2007 09:24:35 +0000 Subject: [PATCH] Applied fix for http://svn.boost.org/trac/boost/ticket/972. [SVN r37993] --- include/boost/limits.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/boost/limits.hpp b/include/boost/limits.hpp index f468dbce..370c0f21 100644 --- a/include/boost/limits.hpp +++ b/include/boost/limits.hpp @@ -76,8 +76,8 @@ namespace std static BOOST_LLT denorm_min() throw() { return 0; }; BOOST_STATIC_CONSTANT(bool, is_iec559 = false); - BOOST_STATIC_CONSTANT(bool, is_bounded = false); - BOOST_STATIC_CONSTANT(bool, is_modulo = false); + BOOST_STATIC_CONSTANT(bool, is_bounded = true); + BOOST_STATIC_CONSTANT(bool, is_modulo = true); BOOST_STATIC_CONSTANT(bool, traps = false); BOOST_STATIC_CONSTANT(bool, tinyness_before = false); @@ -129,8 +129,8 @@ namespace std static BOOST_ULLT denorm_min() throw() { return 0; }; BOOST_STATIC_CONSTANT(bool, is_iec559 = false); - BOOST_STATIC_CONSTANT(bool, is_bounded = false); - BOOST_STATIC_CONSTANT(bool, is_modulo = false); + BOOST_STATIC_CONSTANT(bool, is_bounded = true); + BOOST_STATIC_CONSTANT(bool, is_modulo = true); BOOST_STATIC_CONSTANT(bool, traps = false); BOOST_STATIC_CONSTANT(bool, tinyness_before = false); @@ -141,3 +141,4 @@ namespace std #endif #endif +