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

@@ -183,7 +183,7 @@ xnewvar (size_t s)
{
static_assert (IsMallocable<T>::value, "Trying to use XNEWVAR with a \
non-POD data type.");
return XNEWVAR (T, s);;
return XNEWVAR (T, s);
}
#undef XNEWVAR