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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,bb6f4bd169077fb3 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-02-22 11:09:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!news-peer.gip.net!news.gsl.net!gip.net!nntp.abs.net!uunet!dca.uu.net!ash.uu.net!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Representing data differently Date: 22 Feb 2003 14:09:09 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <686be06c.0302070615.3943b629@posting.google.com> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls4.std.com 1045940949 2662 199.172.62.241 (22 Feb 2003 19:09:09 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Sat, 22 Feb 2003 19:09:09 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:34435 Date: 2003-02-22T14:09:09-05:00 List-Id: "Martin Krischik" writes: > for > State > use record > uninitialized at 0 range 0..0; > on at 0 range 1..1; > writeLineNumber at 0 range 2..2; > writePrefix at 0 range 3..3; > end record; > > -- snap > > The first statement defines the record, the second defines the layout. > Nothing stops you from placing two record elements at the same position. Actually, 13.5.1(11) makes it illegal. - Bob