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.4 required=5.0 tests=BAYES_00,SUBJ_ALL_CAPS autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,51359402da60c472 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-18 07:17:51 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!news-lei1.dfn.de!news-ham1.dfn.de!news.uni-hamburg.de!cs.tu-berlin.de!uni-duisburg.de!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: DYNAMIC ADA TASK CREATION? Date: Wed, 18 Jun 2003 14:17:50 +0000 (UTC) Organization: GMUGHDU Message-ID: References: <3EF0026E.2050309@attbi.com> <3ef04842.436197@news.btclick.com> <3ef05eb1.6179385@news.btclick.com> NNTP-Posting-Host: d2-hrz.uni-duisburg.de X-Trace: a1-hrz.uni-duisburg.de 1055945870 13289 134.91.1.15 (18 Jun 2003 14:17:50 GMT) X-Complaints-To: usenet@news.uni-duisburg.de NNTP-Posting-Date: Wed, 18 Jun 2003 14:17:50 +0000 (UTC) User-Agent: tin/1.5.8-20010221 ("Blue Water") (UNIX) (HP-UX/B.11.00 (9000/831)) Xref: archiver1.google.com comp.lang.ada:39392 Date: 2003-06-18T14:17:50+00:00 List-Id: John McCabe wrote: : On Wed, 18 Jun 2003 11:13:37 +0000 (UTC), john@nospam.demon.co.uk : (John McCabe) wrote: : : :>Just a vague thought....does.. :> :>declare :> the_ts : ts (1 .. n) = (others => new t); : : Certainly won't without a : in front of the = ! Yeah, this is what I had declare the_ts : ts := (1..n => new t); and now that I see it again, there is an opportunity to change it, declare the_ts : constant ts := (1..n => new t); -- Georg