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,ad988eb0a9545c86 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-15 11:24:02 PST Path: supernews.google.com!sn-xit-03!supernews.com!nntp.cs.ubc.ca!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newshub2.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Problem trying to implement generics. References: <3AD9AB9C.80405@elros.cbb-automation.de> X-Newsreader: Tom's custom newsreader Message-ID: Date: Sun, 15 Apr 2001 18:22:15 GMT NNTP-Posting-Host: 24.20.190.201 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 987358935 24.20.190.201 (Sun, 15 Apr 2001 11:22:15 PDT) NNTP-Posting-Date: Sun, 15 Apr 2001 11:22:15 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: supernews.google.com comp.lang.ada:6903 Date: 2001-04-15T18:22:15+00:00 List-Id: >Then I absolutely agree with you that ignoring the return value >indicates a potential problem, therefore I would like to have a syntax >construct for this, that will alert a code reader. Just like procedure Ignoring(Return_Value : in Interfaces.C.Int) is begin null;end Ignoring; ...; Ignoring(Some_Function(X, Y, Z'access)); ...