From fadad77a3953ce65b6dff0c1156d3b8889b6272f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Tue, 1 Oct 2002 13:31:42 +0000 Subject: [PATCH] Merged fix from release branch to main trunk. [SVN r15607] --- include/boost/math/common_factor_ct.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/math/common_factor_ct.hpp b/include/boost/math/common_factor_ct.hpp index d116c4b..6c88636 100644 --- a/include/boost/math/common_factor_ct.hpp +++ b/include/boost/math/common_factor_ct.hpp @@ -36,7 +36,7 @@ namespace detail BOOST_STATIC_CONSTANT( unsigned long, new_value2 = Value1 % Value2 ); #ifndef __BORLANDC__ - #define BOOST_DETAIL_GCD_HELPER_VAL(Value) Value + #define BOOST_DETAIL_GCD_HELPER_VAL(Value) static_cast(Value) #else typedef static_gcd_helper_t self_type; #define BOOST_DETAIL_GCD_HELPER_VAL(Value) (self_type:: Value )