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,f479f3331eef5353 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!d1g2000hsg.googlegroups.com!not-for-mail From: christoph.grein@eurocopter.com Newsgroups: comp.lang.ada Subject: Re: Extra footnote: Re: Size of Vector limited to 1024 MB of Heap Size Date: Wed, 25 Jun 2008 01:04:02 -0700 (PDT) Organization: http://groups.google.com Message-ID: <0daa669f-c704-479d-af51-f21e244b5abe@d1g2000hsg.googlegroups.com> References: NNTP-Posting-Host: 80.156.44.178 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1214381043 16306 127.0.0.1 (25 Jun 2008 08:04:03 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 25 Jun 2008 08:04:03 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d1g2000hsg.googlegroups.com; posting-host=80.156.44.178; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1),gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 webwasher (Webwasher 6.7.0.3295) Xref: g2news1.google.com comp.lang.ada:865 Date: 2008-06-25T01:04:02-07:00 List-Id: On 25 Jun., 04:49, a...@anon.org (anon) wrote: > RM for Ada 95 and Ada 2005 -- 3.5.4 ( 21 ) : says that an Integer must > include the range > > =A0 -2**15+1 .. +2**15-1 =A0 aka =A0 =A0 -32768 .. +32767 > > but it is not limited to that range. Check RM 3.5.4 =A0( 26 ). Paragraph (26) has nothing to do with Integer - it's about nonstandard integer types, and Integer is a standard integer type. > The norm for PC's Integer is -2**32+1 .. +2**32-1 You surely mean -(2**31) .. (2**31) - 1 "Norm"? You mean it's generally the case... There is no (DIN, EU, ...) norm, or is there.