Browse Source

Supply missing std::qualifier to call.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131410 91177308-0d34-0410-b5e6-96231b3b80d8
Howard Hinnant 14 years ago
parent
commit
ed22f562e5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/future

+ 2 - 2
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