IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 5652db26 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

Merge branch 'fix_switchprocesssequence' into 'master'

Adapt condition in `SwitchProcessSequence` similar to !507

See merge request !514
parents 3c2d2d96 c0c502c3
No related branches found
No related tags found
1 merge request!514Adapt condition in `SwitchProcessSequence` similar to !507
Pipeline #10824 passed with warnings
...@@ -403,7 +403,7 @@ namespace corsika { ...@@ -403,7 +403,7 @@ namespace corsika {
} }
// check if we should execute THIS process and then EXIT // check if we should execute THIS process and then EXIT
if (cx_select <= cx_sum) { if (cx_select < cx_sum) {
if constexpr (has_signature_cx1) { if constexpr (has_signature_cx1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment