From b6ad844e136e5c5ad80db276f884e20cc0bfc0ee Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Thu, 23 Nov 2017 01:25:03 +0000 Subject: [PATCH] Add [[nodiscard]] to std::async as part of P0600. llvm-svn: 318889 --- libcxx/include/future | 3 +- libcxx/include/new | 2 +- .../thread/futures/futures.async/async.fail.cpp | 37 ++++++++++++++++++++++ 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 libcxx/test/std/thread/futures/futures.async/async.fail.cpp diff --git a/libcxx/include/future b/libcxx/include/future index e388767..a7c28a4 100644 --- a/libcxx/include/future +++ b/libcxx/include/future @@ -2335,6 +2335,7 @@ inline _LIBCPP_INLINE_VISIBILITY bool __does_policy_contain(launch __policy, lau { return (int(__policy) & int(__value)) != 0; } template +_LIBCPP_NODISCARD_AFTER_CXX17 future::type, typename decay<_Args>::type...>::type> async(launch __policy, _Fp&& __f, _Args&&... __args) { @@ -2360,7 +2361,7 @@ async(launch __policy, _Fp&& __f, _Args&&... __args) } template -inline _LIBCPP_INLINE_VISIBILITY +_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY future::type, typename decay<_Args>::type...>::type> async(_Fp&& __f, _Args&&... __args) { diff --git a/libcxx/include/new b/libcxx/include/new index 6541e02..04355e6 100644 --- a/libcxx/include/new +++ b/libcxx/include/new @@ -271,7 +271,7 @@ template _LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY constexpr _Tp* launder(_Tp* __p) noexcept { - return __launder(__p); + return _VSTD::__launder(__p); } #endif diff --git a/libcxx/test/std/thread/futures/futures.async/async.fail.cpp b/libcxx/test/std/thread/futures/futures.async/async.fail.cpp new file mode 100644 index 0000000..1a719c0 --- /dev/null +++ b/libcxx/test/std/thread/futures/futures.async/async.fail.cpp @@ -0,0 +1,37 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// UNSUPPORTED: libcpp-has-no-threads +// UNSUPPORTED: c++98, c++03 + +// + +// template +// future::type> +// async(F&& f, Args&&... args); + +// template +// future::type> +// async(launch policy, F&& f, Args&&... args); + + +#include +#include +#include +#include + +#include "test_macros.h" + +int foo (int x) { return x; } + +int main () +{ + std::async( foo, 3); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}} + std::async(std::launch::async, foo, 3); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}} +} \ No newline at end of file -- 2.7.4