aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MathFunctionsImpl.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-08-30 09:21:57 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-08-30 09:21:57 +0200
commit68e803a26ea37b8895f0bd45f7bfaa47c375d890 (patch)
tree7b8530d3a7fa05b11ec641fb2bd3a8b9941de839 /Eigen/src/Core/MathFunctionsImpl.h
parente074f720c71e2ecf74932af80cbfbf670565730e (diff)
Fix warning
Diffstat (limited to 'Eigen/src/Core/MathFunctionsImpl.h')
-rw-r--r--Eigen/src/Core/MathFunctionsImpl.h2
1 files changed, 1 insertions, 1 deletions
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<typename T>
-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.