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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,d1fe9a910cd0ca57 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!h48g2000cwc.googlegroups.com!not-for-mail From: "Richard Charts" Newsgroups: comp.lang.ada Subject: Re: Size of objects in records with an array. Date: 24 Oct 2006 11:06:35 -0700 Organization: http://groups.google.com Message-ID: <1161713194.952748.280790@h48g2000cwc.googlegroups.com> References: <1161712138.465357.295460@i42g2000cwa.googlegroups.com> NNTP-Posting-Host: 12.129.98.129 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1161713200 30880 127.0.0.1 (24 Oct 2006 18:06:40 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 24 Oct 2006 18:06:40 +0000 (UTC) In-Reply-To: User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 S1PS Complaints-To: groups-abuse@google.com Injection-Info: h48g2000cwc.googlegroups.com; posting-host=12.129.98.129; posting-account=ydtQyAwAAAC1xxzVoGOYbHSW6zGrdJDV Xref: g2news2.google.com comp.lang.ada:7185 Date: 2006-10-24T11:06:35-07:00 List-Id: Robert A Duff wrote: > "Richard Charts" writes: > > > type Bit_Array is array ( Natural range 8..31) > > of boolean; > > for Bit_Array'Component_Size use 1; > > - Bob Bah! So obvious. Thank you very much. Out of curiousity would the following lines be equivalent? I know both compile. for Bit_Array'Component_Size use 1; for Bit_Array'Size use 24;