From 68e803a26ea37b8895f0bd45f7bfaa47c375d890 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 30 Aug 2016 09:21:57 +0200 Subject: [PATCH] Fix warning --- Eigen/src/Core/MathFunctionsImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/MathFunctionsImpl.h b/Eigen/src/Core/MathFunctionsImpl.h index 9aaefe22e..0c77ee003 100644 --- a/Eigen/src/Core/MathFunctionsImpl.h +++ b/Eigen/src/Core/MathFunctionsImpl.h @@ -23,7 +23,7 @@ namespace internal { This implementation works on both scalars and packets. */ template -EIGEN_DONT_INLINE T generic_fast_tanh_float(const T& a_x) +T generic_fast_tanh_float(const T& a_x) { // Clamp the inputs to the range [-9, 9] since anything outside // this range is +/-1.0f in single-precision.