summaryrefslogtreecommitdiffstats
path: root/mathfuncs_fabs.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-06-07 13:23:11 -0400
committerErik Schnetter <schnetter@gmail.com>2013-06-07 13:23:11 -0400
commit039eafa275852004c3483ecee323527f90e6ac81 (patch)
treeb996f81cd3db71917cea45d4de745cd8b5f5ee0d /mathfuncs_fabs.h
parent65900de24d691d824090f1258628649656d03c8b (diff)
downloadvecmathlib-039eafa275852004c3483ecee323527f90e6ac81.zip
vecmathlib-039eafa275852004c3483ecee323527f90e6ac81.tar.gz
Remove commented-out duplicate function declarations
Diffstat (limited to 'mathfuncs_fabs.h')
-rw-r--r--mathfuncs_fabs.h23
1 files changed, 10 insertions, 13 deletions
diff --git a/mathfuncs_fabs.h b/mathfuncs_fabs.h
index f04004a..60fb0a8 100644
--- a/mathfuncs_fabs.h
+++ b/mathfuncs_fabs.h
@@ -51,7 +51,6 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_ilogb(realvec_t x) -> intvec_t
typename realvec_t::intvec_t mathfuncs<realvec_t>::vml_ilogb(realvec_t x)
{
intvec_t e = lsr(as_int(x) & IV(FP::exponent_mask), FP::mantissa_bits);
@@ -67,22 +66,22 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_ieee_isfinite(realvec_t x) -> boolvec_t
- typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_ieee_isfinite(realvec_t x)
+ typename realvec_t::boolvec_t
+ mathfuncs<realvec_t>::vml_ieee_isfinite(realvec_t x)
{
return (as_int(x) & IV(FP::exponent_mask)) != IV(FP::exponent_mask);
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_ieee_isinf(realvec_t x) -> boolvec_t
- typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_ieee_isinf(realvec_t x)
+ typename realvec_t::boolvec_t
+ mathfuncs<realvec_t>::vml_ieee_isinf(realvec_t x)
{
return (as_int(x) & IV(~FP::signbit_mask)) == IV(FP::exponent_mask);
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_ieee_isnan(realvec_t x) -> boolvec_t
- typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_ieee_isnan(realvec_t x)
+ typename realvec_t::boolvec_t
+ mathfuncs<realvec_t>::vml_ieee_isnan(realvec_t x)
{
return
(as_int(x) & IV(FP::exponent_mask)) == IV(FP::exponent_mask) &&
@@ -90,8 +89,8 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_ieee_isnormal(realvec_t x) -> boolvec_t
- typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_ieee_isnormal(realvec_t x)
+ typename realvec_t::boolvec_t
+ mathfuncs<realvec_t>::vml_ieee_isnormal(realvec_t x)
{
return
(as_int(x) & IV(FP::exponent_mask)) != IV(FP::exponent_mask) &&
@@ -99,8 +98,8 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_isfinite(realvec_t x) -> boolvec_t
- typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_isfinite(realvec_t x)
+ typename realvec_t::boolvec_t
+ mathfuncs<realvec_t>::vml_isfinite(realvec_t x)
{
#if defined VML_HAVE_INF || defined VML_HAVE_NAN
return vml_ieee_isfinite(x);
@@ -110,7 +109,6 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_isinf(realvec_t x) -> boolvec_t
typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_isinf(realvec_t x)
{
#if defined VML_HAVE_INF
@@ -149,7 +147,6 @@ namespace vecmathlib {
}
template<typename realvec_t>
- // auto mathfuncs<realvec_t>::vml_signbit(realvec_t x) -> boolvec_t
typename realvec_t::boolvec_t mathfuncs<realvec_t>::vml_signbit(realvec_t x)
{
return convert_bool(as_int(x) & IV(FP::signbit_mask));
OpenPOWER on IntegriCloud