Skip to content

Commit

Permalink
Need a return statement in BDF even for big mech. (#472)
Browse files Browse the repository at this point in the history
* Need a return statement in BDF even for big mech.

* No cpp for 6 months.

* Another missing return.

---------

Co-authored-by: Bruce Perry <[email protected]>
  • Loading branch information
esclapez and baperry2 authored Jan 26, 2024
1 parent 326ed65 commit e3f2077
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Reactions/ReactorBDF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ ReactorBDF::react(
#else
amrex::Abort(
"BDF reactor is not compatible with large mechanisms on the GPU.");
return 0;
#endif
}

Expand Down Expand Up @@ -488,6 +489,7 @@ ReactorBDF::react(
#else
amrex::Abort(
"BDF reactor is not compatible with large mechanisms on the GPU.");
return 0;
#endif
}

Expand Down

0 comments on commit e3f2077

Please sign in to comment.