1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-07-02 14:04:09 +00:00

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 typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
> >
inline SPROUT_CONSTEXPR bool inline SPROUT_CONSTEXPR bool
isfinite(IntType x) { isfinite(IntType) {
return true; return true;
} }
} // namespace math } // namespace math

View file

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

View file

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