From 620c9cedb6880f28a2b3657a5d55d120bf83e9ba Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 23 Mar 2025 13:10:56 +1300 Subject: Improved project files, constant variables now constant --- test/animated.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/animated.adb') diff --git a/test/animated.adb b/test/animated.adb index 42d2a49..4a5b570 100644 --- a/test/animated.adb +++ b/test/animated.adb @@ -130,7 +130,7 @@ is Frame_Image_Data : constant Image_Data_Array := Make_Image_Data; -- This syntax requires Ada 2022, but it allows all overt heap usage to be avoided - Frame_Images : array (Positive range <>) of RGB.RGB_Image := + Frame_Images : constant array (Positive range <>) of RGB.RGB_Image := (for Index in Frame_Image_Data'Range => RGB.Forge.Create (Frame_Image_Data (Index), Dimension, Dimension, Channels)); -- cgit