Mark __does_policy_contain as 'inline'. Thanks to Chongyu Zhu for the catch

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@193962 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2013-11-03 20:07:47 +00:00
parent ad2a600c2a
commit d8a8f57387

View File

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