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,f0be8eebb2993001 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!feeder.news-service.com!feeder.news-service.com!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!gegeweb.org!news.ecp.fr!news.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Ada 2012 : aliased parameters ? Date: Wed, 30 Mar 2011 14:44:33 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1301514278 24517 69.95.181.76 (30 Mar 2011 19:44:38 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Wed, 30 Mar 2011 19:44:38 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5931 Xref: g2news2.google.com comp.lang.ada:19583 Date: 2011-03-30T14:44:33-05:00 List-Id: "Randy Brukardt" wrote in message news:imtscf$c6u$1@munin.nbi.dk... ... > There is are a couple of small holes that occur by using > Unchecked_Deallocation, but no one is going to do that by accident, and if > there is any sort of management (or sense) on a project, the end-around > will be easily detected. I should mention that there is a relatively easy way to defeat these accessibility checks: simply use .all'Unchecked_Access. More generally, any unchecked programming can of course default the protection. Nothing new about that - that's true of any Ada construct. But of course it is obvious that unchecked programming is being used, so again that is a management problem. Randy.