Skip to content

Commit

Permalink
Merge pull request #125 from CKegel/non-void-fix
Browse files Browse the repository at this point in the history
Resolve warning in transform_reduce function
  • Loading branch information
cwsmith authored Dec 3, 2024
2 parents 94aa915 + 808719b commit a5c2e25
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Omega_h_reduce.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Result transform_reduce(
Iterator first, Iterator last, Result init, Op op, Tranform transform) {
fprintf(stderr, "transform_reduce wrapper. We shouldn't be here... exiting\n");
OMEGA_H_CHECK(false);
return Result();
}

#elif defined(OMEGA_H_USE_CUDA)
Expand Down

0 comments on commit a5c2e25

Please sign in to comment.