diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2013-11-03 20:07:47 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2013-11-03 20:07:47 +0000 |
commit | 222d1c7f139b68c37f5a848a03cec8114bdbffe8 (patch) | |
tree | b5fabad1ec6d2e5e0248da7357c5283ec0c0153e /libcxx/include/future | |
parent | b1915875d09641045c8f48ce6210ec0481958647 (diff) | |
download | bcm5719-llvm-222d1c7f139b68c37f5a848a03cec8114bdbffe8.tar.gz bcm5719-llvm-222d1c7f139b68c37f5a848a03cec8114bdbffe8.zip |
Mark __does_policy_contain as 'inline'. Thanks to Chongyu Zhu for the catch
llvm-svn: 193962
Diffstat (limited to 'libcxx/include/future')
-rw-r--r-- | libcxx/include/future | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/future b/libcxx/include/future index 7561d190f41..66046835843 100644 --- a/libcxx/include/future +++ b/libcxx/include/future @@ -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> |