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,1742659b6aa943fb X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Mon, 28 Nov 2005 21:03:47 -0600 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <1132913111.023558.255590@g14g2000cwa.googlegroups.com> <4386eb3d$1_1@glkas0286.greenlnk.net> <1133019090.480779.116750@f14g2000cwb.googlegroups.com> Subject: Re: Tasking and wxWidgets Date: Mon, 28 Nov 2005 21:07:54 -0600 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4952.2800 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4952.2800 Message-ID: NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-mmmZ2Ynz8+0ftYSzvqhsuLrqpye5ZMgTPWf9r3KPKoAsequP1igDdFZvGaesKXeQUI+5UMAcvaxFjIt!8aQ9W6pCRrv+uva2JCJjFHQdxO7GtpsTLYLVKBdV7/DTDbf0jQXmz7CjDT5DvnvOi/z920MWN0S7 X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:6659 Date: 2005-11-28T21:07:54-06:00 List-Id: "Martin Dowie" wrote in message news:dma971$fvc$1@nwrdmz01.dmz.ncs.ea.ibs-infra.bt.com... > You won't need a preprocessor (although GNAT does have one 'gnatprep') - > same spec, different bodies. > > -- Spec > procedure Foo; > > -- Body > procedure Foo is null; While it's not germane to Martin's point, this code is illegal in Ada 200Y: a null procedure cannot be a completion. Why not? Null procedures are similar to abstract subprograms in use and description, and those clearly can't be a completion. And it didn't seem worth a new bunch of rules to avoid typing 12 characters - the least important savings that one could imagine. Randy Brukardt.