You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
loop
exit when TP_Cur = TP_Mapping_List.No_Element;
if TP_Mapping_List.Element (TP_Cur).TP_Name.all = TPtarg then
exit;
end if;
TP_Mapping_List.Next (TP_Cur);
end loop;
TP := TP_Mapping_List.Element (TP_Cur);
If TP_Cur = TP_Mapping_List.No_Element, then TP_Mapping_List.Element (TP_Cur) raises a constraint error.
The text was updated successfully, but these errors were encountered:
I experienced a crash in gnattest's
Test.Skeleton.Add_DT
:If
TP_Cur = TP_Mapping_List.No_Element
, thenTP_Mapping_List.Element (TP_Cur)
raises a constraint error.The text was updated successfully, but these errors were encountered: