Skip to content
Snippets Groups Projects

Local variable cleanup

Merged Pedro Gonnet requested to merge local_variable_cleanup into master

Yet another batch of cleanups.

Merge request reports

Approval is optional

Merged by avatar (May 28, 2025 8:29pm UTC)

Merge details

  • Changes merged into master with f6f7239b.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1093 1091 break;
1094 1092 case task_type_recv:
1095 1093 #ifdef WITH_MPI
1096 if ((err = MPI_Irecv(t->ci->parts, t->ci->count, s->part_mpi_type,
1097 t->ci->nodeID, t->flags, MPI_COMM_WORLD,
1098 &t->req)) != MPI_SUCCESS) {
1094 err = MPI_Irecv(t->ci->parts, t->ci->count, s->part_mpi_type,
1095 t->ci->nodeID, t->flags, MPI_COMM_WORLD, &t->req);
1096 if (err != MPI_SUCCESS) {
  • Pedro Gonnet Added 1 commit:

    Added 1 commit:

  • Unable to load the diff
  • Thanks, all seems to build and run, so accepting.

  • Peter W. Draper Status changed to merged

    Status changed to merged

  • Peter W. Draper mentioned in commit f6f7239b

    mentioned in commit f6f7239b

  • Author Developer

    Cool, thanks for testing everything!

  • Please register or sign in to reply
    Loading