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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,7a4c5d22669609bf X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!v4g2000hsf.googlegroups.com!not-for-mail From: petter_fryklund@hotmail.com Newsgroups: comp.lang.ada Subject: Re: ObjectAda and Long_Long_Float Date: Wed, 5 Dec 2007 03:30:22 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <8af93665-0a66-44df-aab1-df1b20b8198c@d27g2000prf.googlegroups.com> NNTP-Posting-Host: 148.2.192.140 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1196854223 29255 127.0.0.1 (5 Dec 2007 11:30:23 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 5 Dec 2007 11:30:23 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: v4g2000hsf.googlegroups.com; posting-host=148.2.192.140; posting-account=ACEctQoAAAD3d42JSpp6_fpg88BhdFDo User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:18723 Date: 2007-12-05T03:30:22-08:00 List-Id: On 5 Dec, 10:27, axtens wrote: > G'day everyone, > > Is it the nature of the beast that ObjectAda 7.2.2 knows nothing (or > appears to) about Long_Long_Float? GNAT does. > > Kind regards, > Bruce. You can copy from Standard (readable by command gnatpsta) and make your own declaration, or from here: type Long_Long_Float is digits range -16#0.FFFF_FFFF_FFFF_F8#E+256 .. 16#0.FFFF_FFFF_FFFF_F8#E+256; I don't know why, but this is same as Long_Float where I spend my days (Solaris). Regards, Petter