From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c22608a39b6f5e7b X-Google-Attributes: gid103376,public From: Matthew Heaney Subject: Re: Dynamic Array Sizing Date: 1999/06/19 Message-ID: #1/1 X-Deja-AN: 491431552 References: <376B1811.666F042@hotmail.com> NNTP-Posting-Date: Sat, 19 Jun 1999 07:31:24 PDT Newsgroups: comp.lang.ada Date: 1999-06-19T00:00:00+00:00 List-Id: On 19 Jun 1999 11:16, jerry@jvdsys.stuyts.nl wrote: > begin > Num_Elements := Data_Elements (File_Name); > Data := Create_Data_Storage (Num_Elements); > Load_Data (File_Name, Data); > Put_Line ("Loaded" & Data.all'Length'Img & " Booleans from " & File_Name); > Free (Data); > end Stuff; Why did you put the data on the heap?