From de4fb969ada2850d28535aaeb08fa5f5081e2602 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 5 Sep 2008 10:39:14 +0000 Subject: [PATCH] Fix definition to match fwd declaration. [SVN r48607] --- include/boost/math/special_functions/log1p.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/math/special_functions/log1p.hpp b/include/boost/math/special_functions/log1p.hpp index 6ce4777f0..d1ca859a5 100644 --- a/include/boost/math/special_functions/log1p.hpp +++ b/include/boost/math/special_functions/log1p.hpp @@ -452,7 +452,7 @@ inline typename tools::promote_args::type } template -inline T log1pmx(T x) +inline typename tools::promote_args::type log1pmx(T x) { return log1pmx(x, policies::policy<>()); }