Skip to content

Commit

Permalink
coverity fix, missing break
Browse files Browse the repository at this point in the history
Signed-off-by: andyfox-rushc <[email protected]>
  • Loading branch information
andyfox-rushc committed Dec 8, 2024
1 parent e52d80b commit 0e1f298
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/odb/src/db/dbJournal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1778,8 +1778,10 @@ void dbJournal::undo_swapObject()
467,
"No undo_swapObject Name support for type {}",
dbObject::getTypeName(sub_obj_type));
break;
}
}
break;
}
case dbInstObj: {
uint inst_id;
Expand Down

0 comments on commit 0e1f298

Please sign in to comment.