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,4204eddb984f308e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-15 13:44:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!newsfeed2.easynews.com!easynews.com!easynews!easynews-local!news.easynews.com.POSTED!not-for-mail From: "Hartmut Schaefer" Newsgroups: comp.lang.ada References: Subject: Re: Apex 4.2 question about records X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: X-Complaints-To: abuse@easynews.com Organization: EasyNews, UseNet made Easy! - Test our service with our FREE trial at https://www.easynews.com/trial/trial.phtml X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly. Date: Fri, 15 Nov 2002 21:43:58 GMT Xref: archiver1.google.com comp.lang.ada:30962 Date: 2002-11-15T21:43:58+00:00 List-Id: Nelson, you can turn this warnings off by the new "pragma suppress_warnings". This pragma turns off the warning on a per type basis. There is no "global" way, e.g. per view or per unit. I must admit that this might be laboringly. There are also 2 implementation defined parameters of pragma Convention dealing with the method how parameters are passed: Ada_Pass_By_Copy and Ada_Pass_By_Reference. Please have a look into the 4.2 release notes for a detailed description of these new features. If you have further questions or comments don't hesitate to contact our support. Hartmut Schaefer Rational Software Germany dealing with the pass method of parameters: pragma "Nelson Chandler" schrieb im Newsbeitrag news:H4IBt8.KM5@news.boeing.com... > Hi. I'm using Apex 4.2. When I compile and it reaches a record type, I get > this warning: > > " is passed by copy, but it was passed by reference in releases > prior to Apex 4.2; this may cause incompatibilities" > > What does this mean and why is it telling me. It seems like record types > would be fairly common and its extreemly annoying getting this message all > the time. > > Thanks, > Nelson > >