Supply missing std::qualifier to call.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131410 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/future b/include/future
index 3be5f05..c60d3ac 100644
--- a/include/future
+++ b/include/future
@@ -2062,8 +2062,8 @@
>::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