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,28ba56f6631ee6c9 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit From: James Alan Farrell Newsgroups: comp.lang.ada Subject: Re: Question on operator overloading Date: Thu, 07 Apr 2005 12:57:55 -0400 Message-ID: References: <9bna519q4shdp4vrjlap1pbeps4u8565m8@4ax.com> <42555fc1$0$27196$9b4e6d93@newsread4.arcor-online.net> X-Newsreader: Forte Free Agent 2.0/32.652 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: fw.grammatech.com X-Trace: newsfeed.slurp.net 1112893159 209.4.89.67 (7 Apr 2005 11:59:19 -0500) X-Original-NNTP-Posting-Host: 209.4.89.67 Path: g2news1.google.com!news3.google.com!news2.google.com!newsread.com!newsprint.newsread.com!news-out.newsfeeds.com!propagator3-LAX.newsfeeds.com!news-in.usenet.com!news.moat.net!newsfeed.slurp.net!not-for-mail Xref: g2news1.google.com comp.lang.ada:10318 Date: 2005-04-07T12:57:55-04:00 List-Id: Oops, yes, you are correct. (I was under the impression that had changed in Ada 95, but I see that in ARM 6.1(18). Thanks, James On Thu, 07 Apr 2005 18:33:32 +0200, Georg Bauhaus wrote: >James Alan Farrell wrote: > >> function "+" (Left : MyInt; Right : in out MyInt) return MyInt > >"+" is a function, and functions are not allowed to make assignments >to their arguments directly. > >Georg