Glen: Remove unneeded _LIBCPP_ALWAYS_INLINE.

llvm-svn: 189626
This commit is contained in:
Howard Hinnant 2013-08-29 23:50:48 +00:00
parent 0718591771
commit b81766ca23
1 changed files with 1 additions and 1 deletions

View File

@ -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);}