From 9805082c575671c8be48a392286714bd4e329462 Mon Sep 17 00:00:00 2001 From: bolero-MURAKAMI Date: Sat, 26 Oct 2013 23:37:47 +0900 Subject: [PATCH] fix warning: unused parameter --- sprout/math/isfinite.hpp | 2 +- sprout/math/isinf.hpp | 2 +- sprout/math/isnan.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sprout/math/isfinite.hpp b/sprout/math/isfinite.hpp index 8f70cf46..c80317df 100644 --- a/sprout/math/isfinite.hpp +++ b/sprout/math/isfinite.hpp @@ -48,7 +48,7 @@ namespace sprout { typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR bool - isfinite(IntType x) { + isfinite(IntType) { return true; } } // namespace math diff --git a/sprout/math/isinf.hpp b/sprout/math/isinf.hpp index 39092966..4b72b072 100644 --- a/sprout/math/isinf.hpp +++ b/sprout/math/isinf.hpp @@ -48,7 +48,7 @@ namespace sprout { typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR bool - isinf(IntType x) { + isinf(IntType) { return false; } } // namespace math diff --git a/sprout/math/isnan.hpp b/sprout/math/isnan.hpp index e58ab5ae..30ac9ffb 100644 --- a/sprout/math/isnan.hpp +++ b/sprout/math/isnan.hpp @@ -46,7 +46,7 @@ namespace sprout { typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR bool - isnan(IntType x) { + isnan(IntType) { return false; } } // namespace math