Skip to content

Commit 3d08fa2

Browse files
committed
[libc++] Another _LIBCPP_NODEBUG fix
1 parent 1434313 commit 3d08fa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libcxx/include/future

+1-1
Original file line numberDiff line numberDiff line change
@@ -1840,7 +1840,7 @@ class _LIBCPP_HIDDEN __async_func {
18401840
tuple<_Fp, _Args...> __f_;
18411841

18421842
public:
1843-
using _Rp = __invoke_result_t<_Fp, _Args...>;
1843+
using _Rp _LIBCPP_NODEBUG = __invoke_result_t<_Fp, _Args...>;
18441844

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

0 commit comments

Comments
 (0)