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,ee1a8b8db84c88f X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!newsfeed.stueberl.de!peer-uk.news.demon.net!kibo.news.demon.net!mutlu.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Ada exception block does NOT work? Date: Sun, 21 Aug 2005 12:18:54 +0100 Organization: Pushface Message-ID: References: <4301ab29$0$6989$9b4e6d93@newsread2.arcor-online.net> NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1124623134 20090 62.49.19.209 (21 Aug 2005 11:18:54 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Sun, 21 Aug 2005 11:18:54 +0000 (UTC) Cancel-Lock: sha1:XybXq9rBl3k/Z3dVdyXjZMT7nY8= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin) Xref: g2news1.google.com comp.lang.ada:4235 Date: 2005-08-21T12:18:54+01:00 List-Id: Robert A Duff writes: > type Stack_Index is range 1..whatever; > subtype Stack_Count is Stack_Index'Base range 0..whatever; Now I see it this idiom is obvious .. thanks! > type Stack(Max: ...) is limited > record > Top: Stack_Count := 0; -- points to the top element of the stack > Elements: Element_Array(1..Max); > end record; > > Do you think "points to" is confusing in the above comment? Yes, a bit (sorry)