From 161a9bf447aca05ea60b9f35c5e2be9bf01c7589 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Thu, 29 Aug 2013 23:50:48 +0000 Subject: [PATCH] Glen: Remove unneeded _LIBCPP_ALWAYS_INLINE. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@189626 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/cmath | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cmath b/include/cmath index f253b9344..75087ae78 100644 --- a/include/cmath +++ b/include/cmath @@ -767,7 +767,7 @@ inline _LIBCPP_INLINE_VISIBILITY long double cos(long double __x) _NOEXCEPT {ret #endif template -inline _LIBCPP_ALWAYS_INLINE _LIBCPP_INLINE_VISIBILITY +inline _LIBCPP_INLINE_VISIBILITY typename enable_if::value, double>::type cos(_A1 __x) _NOEXCEPT {return cos((double)__x);}