diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-05-16 16:20:59 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-05-16 16:20:59 +0000 |
commit | 7735ccaf86d142049e5da379f8990c7d674e4ccf (patch) | |
tree | 19529ac8cb4a85d6ecaff4d9533f38082fa067da | |
parent | 23fdcd70c6410a8c8f13b16afcf24255c67ad179 (diff) | |
download | bcm5719-llvm-7735ccaf86d142049e5da379f8990c7d674e4ccf.tar.gz bcm5719-llvm-7735ccaf86d142049e5da379f8990c7d674e4ccf.zip |
Supply missing std::qualifier to call.
llvm-svn: 131410
-rw-r--r-- | libcxx/include/future | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/future b/libcxx/include/future index 3be5f0520a7..c60d3accf37 100644 --- a/libcxx/include/future +++ b/libcxx/include/future @@ -2062,8 +2062,8 @@ typename enable_if >::type async(_F&& __f, _Args&&... __args) { - return async(launch::any, _STD::forward<_F>(__f), - _STD::forward<_Args>(__args)...); + return _STD::async(launch::any, _STD::forward<_F>(__f), + _STD::forward<_Args>(__args)...); } #endif // _LIBCPP_HAS_NO_VARIADICS |