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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,826cd690cb6a7585 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!t20g2000prf.googlegroups.com!not-for-mail From: Adam Beneschan Newsgroups: comp.lang.ada Subject: Re: Address and bit mask Date: Tue, 30 Aug 2011 08:59:28 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <71159ccc-bf20-4fcf-a7f1-3b90629c1ecb@l4g2000vbv.googlegroups.com> <87fwkk0zv7.fsf@ludovic-brenta.org> <7d70b603-a03d-456a-b775-1325eac83aa0@t30g2000prm.googlegroups.com> NNTP-Posting-Host: 66.126.103.122 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1314720406 25906 127.0.0.1 (30 Aug 2011 16:06:46 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 30 Aug 2011 16:06:46 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: t20g2000prf.googlegroups.com; posting-host=66.126.103.122; posting-account=duW0ogkAAABjRdnxgLGXDfna0Gc6XqmQ User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: ARLUEHNKC X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:21724 Date: 2011-08-30T08:59:28-07:00 List-Id: On Aug 30, 8:14=A0am, Adam Beneschan wrote: > =A0 =A0type Pool_Type is array (Natural range <>) of > System.Storage_Elements.Storage_Element; > =A0 =A0for Pool_Type'Alignment use 2048; OK, I'm still not used to Ada 2012 aspect clauses, so it would be better to say type Pool_Type is array (Natural range <>) of System.Storage_Elements.Storage_Element with Alignment =3D> 2048; if your compiler supports this Ada 2012 feature. -- Adam