[cfe-commits] [libcxx] r131410 - /libcxx/trunk/include/future
Howard Hinnant
hhinnant at apple.com
Mon May 16 09:21:00 PDT 2011
Author: hhinnant
Date: Mon May 16 11:20:59 2011
New Revision: 131410
URL: http://llvm.org/viewvc/llvm-project?rev=131410&view=rev
Log:
Supply missing std::qualifier to call.
Modified:
libcxx/trunk/include/future
Modified: libcxx/trunk/include/future
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/future?rev=131410&r1=131409&r2=131410&view=diff
==============================================================================
--- libcxx/trunk/include/future (original)
+++ libcxx/trunk/include/future Mon May 16 11:20:59 2011
@@ -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
More information about the cfe-commits
mailing list