mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +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
|
||||
>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
isfinite(IntType x) {
|
||||
isfinite(IntType) {
|
||||
return true;
|
||||
}
|
||||
} // namespace math
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue