gdb, gdbsupport: fix all ;; instances

I forgot to fix a `;;` typo when pushing a previous patch.  Fix it, and
fix all the other instances I could find in the code base.

Change-Id: I298f9ffb1a5157925076ef67b439579b1aeeaa2b
This commit is contained in:
Simon Marchi
2025-05-29 11:13:08 -04:00
parent 42339bc4e0
commit bc5237a263
7 changed files with 7 additions and 7 deletions

View File

@@ -702,7 +702,7 @@ print_variant_part (const variant_part &part,
name = "?";
else
{
name = type->field (part.discriminant_index).name ();;
name = type->field (part.discriminant_index).name ();
discr_type = type->field (part.discriminant_index).type ();
}