Skip to content

Commit

Permalink
[libc++] Another _LIBCPP_NODEBUG fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Jan 20, 2025
1 parent 1434313 commit 3d08fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/future
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@ class _LIBCPP_HIDDEN __async_func {
tuple<_Fp, _Args...> __f_;

public:
using _Rp = __invoke_result_t<_Fp, _Args...>;
using _Rp _LIBCPP_NODEBUG = __invoke_result_t<_Fp, _Args...>;

_LIBCPP_HIDE_FROM_ABI explicit __async_func(_Fp&& __f, _Args&&... __args)
: __f_(std::move(__f), std::move(__args)...) {}
Expand Down

0 comments on commit 3d08fa2

Please sign in to comment.