fix warning: unused parameter

This commit is contained in:
bolero-MURAKAMI 2013-10-26 23:37:47 +09:00
parent be9a5f9b78
commit 9805082c57
3 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ namespace sprout {
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR bool
isfinite(IntType x) {
isfinite(IntType) {
return true;
}
} // namespace math

View file

@ -48,7 +48,7 @@ namespace sprout {
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR bool
isinf(IntType x) {
isinf(IntType) {
return false;
}
} // namespace math

View file

@ -46,7 +46,7 @@ namespace sprout {
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR bool
isnan(IntType x) {
isnan(IntType) {
return false;
}
} // namespace math