Skip to content

Commit

Permalink
add missing typename to alias declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler authored Aug 9, 2024
1 parent d46456d commit a235244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/exec/system_context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ namespace exec {
template <class _Previous, class _BulkState, class... _As>
struct __typed_forward_args_receiver : __forward_args_receiver<_Previous> {
using __base_t = __forward_args_receiver<_Previous>;
using __rcvr_t = _BulkState::__rcvr_t;
using __rcvr_t = typename _BulkState::__rcvr_t;

/// Stores `__state` and `__as` in the base class storage, with the right types.
explicit __typed_forward_args_receiver(_BulkState* __state, _As&&... __as) {
Expand Down

0 comments on commit a235244

Please sign in to comment.