Skip to content

Commit

Permalink
Avoid switch statement fallthrough in edm::Path
Browse files Browse the repository at this point in the history
This fixes a gcc 9 warning.
  • Loading branch information
Dr15Jones committed Jul 9, 2019
1 parent 3cd8b87 commit 8c6f19f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions FWCore/Framework/src/Path.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ namespace edm {
if (stopProcessingEvent_) {
*stopProcessingEvent_ = true;
}
break;
}
default: {
if (isEvent)
Expand Down

0 comments on commit 8c6f19f

Please sign in to comment.