summaryrefslogtreecommitdiff
path: root/boost/math/special_functions/fpclassify.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/math/special_functions/fpclassify.hpp')
-rw-r--r--boost/math/special_functions/fpclassify.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/math/special_functions/fpclassify.hpp b/boost/math/special_functions/fpclassify.hpp
index 40f6e14ba5..8e75fae0f2 100644
--- a/boost/math/special_functions/fpclassify.hpp
+++ b/boost/math/special_functions/fpclassify.hpp
@@ -309,7 +309,7 @@ namespace detail {
if(std::numeric_limits<T>::is_specialized)
return isfinite_impl(x, generic_tag<true>());
#endif
- (void)x; // warning supression.
+ (void)x; // warning suppression.
return true;
}
@@ -453,7 +453,7 @@ namespace detail {
if(std::numeric_limits<T>::is_specialized)
return isinf_impl(x, generic_tag<true>());
#endif
- (void)x; // warning supression.
+ (void)x; // warning suppression.
return false;
}
@@ -541,7 +541,7 @@ namespace detail {
if(std::numeric_limits<T>::is_specialized)
return isnan_impl(x, generic_tag<true>());
#endif
- (void)x; // warning supression
+ (void)x; // warning suppression
return false;
}