diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-08-29 23:50:48 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-29 23:50:48 +0000 |
commit | b81766ca232cba89ba2c058affadc2220eb19f19 (patch) | |
tree | 396ab26a1483e87ec6550775fc5c6f182ba565e2 /libcxx | |
parent | 0718591771c8564f77706731db1b5d35c7fc4789 (diff) | |
download | bcm5719-llvm-b81766ca232cba89ba2c058affadc2220eb19f19.tar.gz bcm5719-llvm-b81766ca232cba89ba2c058affadc2220eb19f19.zip |
Glen: Remove unneeded _LIBCPP_ALWAYS_INLINE.
llvm-svn: 189626
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/include/cmath | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/cmath b/libcxx/include/cmath index f253b93442f..75087ae78fb 100644 --- a/libcxx/include/cmath +++ b/libcxx/include/cmath @@ -767,7 +767,7 @@ inline _LIBCPP_INLINE_VISIBILITY long double cos(long double __x) _NOEXCEPT {ret #endif template <class _A1> -inline _LIBCPP_ALWAYS_INLINE _LIBCPP_INLINE_VISIBILITY +inline _LIBCPP_INLINE_VISIBILITY typename enable_if<is_integral<_A1>::value, double>::type cos(_A1 __x) _NOEXCEPT {return cos((double)__x);} |