Skip to content
Snippets Groups Projects
Commit 99c09647 authored by Marshall Clow's avatar Marshall Clow
Browse files

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

llvm-svn: 193963
parent 222d1c7f
No related branches found
No related tags found
No related merge requests found
...@@ -2331,7 +2331,7 @@ private: ...@@ -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; } { return (int(__policy) & int(__value)) != 0; }
template <class _Fp, class... _Args> template <class _Fp, class... _Args>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment