diff options
-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 |