Fix a regression introduced in r116430 with the added 'break' statement,
which broke test/breakpoint_locations.
Add a comment about intentional fall-through in the case statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116463 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Process.cpp b/source/Target/Process.cpp
index f15cc02..5b789dc 100644
--- a/source/Target/Process.cpp
+++ b/source/Target/Process.cpp
@@ -1439,7 +1439,7 @@
{
case eVoteYes:
Process::ProcessEventData::SetRestartedInEvent (event_ptr, true);
- break;
+ // Intentional fall-through here.
case eVoteNoOpinion:
case eVoteNo:
return_value = false;