From f6cc00c7e53ea5bc6fa19177bdb98ddcf25440d0 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Mon, 19 Jan 2026 15:21:43 +1300 Subject: State now uses a Vector instead of a Map --- src/kompsos-pretty_print.adb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kompsos-pretty_print.adb') diff --git a/src/kompsos-pretty_print.adb b/src/kompsos-pretty_print.adb index 3a65fb9..a9ba9e2 100644 --- a/src/kompsos-pretty_print.adb +++ b/src/kompsos-pretty_print.adb @@ -97,10 +97,10 @@ package body Kompsos.Pretty_Print is if Item.Actual.Is_Empty then SU.Append (Result, Latin.HT & "N/A" & Latin.LF); else - for Iter in Item.Actual.Iterate loop + for Bind of Item.Actual loop SU.Append (Result, Latin.HT & - Image (Binding_Maps.Key (Iter)) & " => " & - Image (Binding_Maps.Element (Iter)) & Latin.LF); + Image (Bind.Key) & " => " & + Image (Bind.Elem) & Latin.LF); end loop; end if; return SU.To_String (Result); -- cgit