Skip to content

Commit

Permalink
Make DgElementArrayMember clang-14 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsdeppe committed Aug 28, 2024
1 parent 50040c6 commit af31eaa
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/Parallel/ArrayCollection/DgElementArrayMember.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,12 @@ bool DgElementArrayMember<Dim, Metavariables,
}
#endif // SPECTRE_CHARM_PROJECTIONS

const auto& [requested_execution, next_action_step] = ThisAction::apply(
box_, inboxes_, *Parallel::local_branch(global_cache_proxy_),
std::as_const(this->element_id_), actions_list{},
std::add_pointer_t<ParallelComponent>{});
const auto& [requested_execution_return, next_action_step] =
ThisAction::apply(box_, inboxes_,
*Parallel::local_branch(global_cache_proxy_),
std::as_const(this->element_id_), actions_list{},
std::add_pointer_t<ParallelComponent>{});
const auto& requested_execution = requested_execution_return;

if (next_action_step.has_value()) {
ASSERT(
Expand Down

0 comments on commit af31eaa

Please sign in to comment.