Skip to content

Commit

Permalink
Add PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pieandcakes committed Jun 12, 2018
1 parent 6268d14 commit cc41cf1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/MIDebugEngine/Engine.Impl/DebuggedProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -767,8 +767,10 @@ private List<LaunchCommand> GetInitializeCommands()
{
bkpt = b as TupleValue;
}
else if (b is ValueListValue)
else if (b is ValueListValue) // Used when main breakpoint binds in more than one location
{
// Grab the first one as this is usually the <MULTIPLE> one that we can unbind them all with.
// This is usually "1" when the children manifest as "1.1", "1.2", etc
bkpt = (b as ValueListValue).Content[0] as TupleValue;
}
Expand Down

0 comments on commit cc41cf1

Please sign in to comment.