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:
parent
be9a5f9b78
commit
9805082c57
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue