@@ -1573,73 +1573,73 @@ detail::enable_if_t<detail::is_genfloatf<T>::value, T> tan(T x) __NOEXC {
1573
1573
/* ----------------- -ffast-math functions. ---------------------------------*/
1574
1574
// genfloatf cos (genfloatf x)
1575
1575
template <typename T>
1576
- detail::enable_if_t <detail::is_genfloat <T>::value, T> cos (T x) __NOEXC {
1576
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> cos (T x) __NOEXC {
1577
1577
return native::cos (x);
1578
1578
}
1579
1579
1580
1580
// genfloatf exp (genfloatf x)
1581
1581
template <typename T>
1582
- detail::enable_if_t <detail::is_genfloat <T>::value, T> exp (T x) __NOEXC {
1582
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> exp (T x) __NOEXC {
1583
1583
return native::exp (x);
1584
1584
}
1585
1585
1586
1586
// genfloatf exp2 (genfloatf x)
1587
1587
template <typename T>
1588
- detail::enable_if_t <detail::is_genfloat <T>::value, T> exp2 (T x) __NOEXC {
1588
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> exp2 (T x) __NOEXC {
1589
1589
return native::exp2 (x);
1590
1590
}
1591
1591
1592
1592
// genfloatf exp10 (genfloatf x)
1593
1593
template <typename T>
1594
- detail::enable_if_t <detail::is_genfloat <T>::value, T> exp10 (T x) __NOEXC {
1594
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> exp10 (T x) __NOEXC {
1595
1595
return native::exp10 (x);
1596
1596
}
1597
1597
1598
1598
// genfloatf log(genfloatf x)
1599
1599
template <typename T>
1600
- detail::enable_if_t <detail::is_genfloat <T>::value, T> log (T x) __NOEXC {
1600
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> log (T x) __NOEXC {
1601
1601
return native::log (x);
1602
1602
}
1603
1603
1604
1604
// genfloatf log2 (genfloatf x)
1605
1605
template <typename T>
1606
- detail::enable_if_t <detail::is_genfloat <T>::value, T> log2 (T x) __NOEXC {
1606
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> log2 (T x) __NOEXC {
1607
1607
return native::log2 (x);
1608
1608
}
1609
1609
1610
1610
// genfloatf log10 (genfloatf x)
1611
1611
template <typename T>
1612
- detail::enable_if_t <detail::is_genfloat <T>::value, T> log10 (T x) __NOEXC {
1612
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> log10 (T x) __NOEXC {
1613
1613
return native::log10 (x);
1614
1614
}
1615
1615
1616
1616
// genfloatf powr (genfloatf x)
1617
1617
template <typename T>
1618
- detail::enable_if_t <detail::is_genfloat <T>::value, T> powr (T x, T y) __NOEXC {
1618
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> powr (T x, T y) __NOEXC {
1619
1619
return native::powr (x, y);
1620
1620
}
1621
1621
1622
1622
// genfloatf rsqrt (genfloatf x)
1623
1623
template <typename T>
1624
- detail::enable_if_t <detail::is_genfloat <T>::value, T> rsqrt (T x) __NOEXC {
1624
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> rsqrt (T x) __NOEXC {
1625
1625
return native::rsqrt (x);
1626
1626
}
1627
1627
1628
1628
// genfloatf sin (genfloatf x)
1629
1629
template <typename T>
1630
- detail::enable_if_t <detail::is_genfloat <T>::value, T> sin (T x) __NOEXC {
1630
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> sin (T x) __NOEXC {
1631
1631
return native::sin (x);
1632
1632
}
1633
1633
1634
1634
// genfloatf sqrt (genfloatf x)
1635
1635
template <typename T>
1636
- detail::enable_if_t <detail::is_genfloat <T>::value, T> sqrt (T x) __NOEXC {
1636
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> sqrt (T x) __NOEXC {
1637
1637
return native::sqrt (x);
1638
1638
}
1639
1639
1640
1640
// genfloatf tan (genfloatf x)
1641
1641
template <typename T>
1642
- detail::enable_if_t <detail::is_genfloat <T>::value, T> tan (T x) __NOEXC {
1642
+ detail::enable_if_t <detail::is_genfloatf <T>::value, T> tan (T x) __NOEXC {
1643
1643
return native::tan (x);
1644
1644
}
1645
1645
0 commit comments