From 9f43b6a7d679af8e8204014578ecefeaea3ca497 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 27 Nov 2012 14:19:45 +0000 Subject: [PATCH] Removed missed usage of deprecated macros in Boost.Math [SVN r81586] --- test/common_factor_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/common_factor_test.cpp b/test/common_factor_test.cpp index db9032e..11c32a6 100644 --- a/test/common_factor_test.cpp +++ b/test/common_factor_test.cpp @@ -148,7 +148,7 @@ public: BOOST_STATIC_CONSTANT(int, digits = limits_type::digits); BOOST_STATIC_CONSTANT(int, digits10 = limits_type::digits10); -#ifndef BOOST_NO_NUMERIC_LIMITS_LOWEST +#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS BOOST_STATIC_CONSTANT(int, max_digits10 = limits_type::max_digits10); #endif BOOST_STATIC_CONSTANT(bool, is_signed = limits_type::is_signed); @@ -198,7 +198,7 @@ public: BOOST_STATIC_CONSTANT(int, digits = limits_type::digits); BOOST_STATIC_CONSTANT(int, digits10 = limits_type::digits10); -#ifndef BOOST_NO_NUMERIC_LIMITS_LOWEST +#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS BOOST_STATIC_CONSTANT(int, max_digits10 = limits_type::max_digits10); #endif BOOST_STATIC_CONSTANT(bool, is_signed = limits_type::is_signed);