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
diff --git a/include/future b/include/future
index 6604683..73d5456 100644
--- a/include/future
+++ b/include/future
@@ -2331,7 +2331,7 @@
}
};
-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>