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

llvm-svn: 193962
This commit is contained in:
Marshall Clow 2013-11-03 20:07:47 +00:00
parent b1915875d0
commit 222d1c7f13
1 changed files with 1 additions and 1 deletions

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>