Better inline marking for __does_policy_contain. Thanks to Chongyu Zhu for the catch

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@193963 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2013-11-03 22:06:53 +00:00
parent d8a8f57387
commit 3b3108ec59

View File

@@ -2331,7 +2331,7 @@ private:
}
};
inline bool __does_policy_contain(launch __policy, launch __value )
inline _LIBCPP_INLINE_VISIBILITY bool __does_policy_contain(launch __policy, launch __value )
{ return (int(__policy) & int(__value)) != 0; }
template <class _Fp, class... _Args>