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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,2f0ecc62e58f0691,start X-Google-Attributes: gid103376,public From: news@hilgendorf.de (Oliver Hilgendorf) Subject: system."+" renaming using GNAT Date: 1999/01/12 Message-ID: <369bb27b.18027210@news.nacamar.de>#1/1 X-Deja-AN: 431792503 Content-Transfer-Encoding: 7bit Organization: Posted via the Nacamar Network Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-01-12T00:00:00+00:00 List-Id: The following statement function "+" (Left : in System.Address; Right : in Integer) return System.Address renames system."+"; works fine using the Rational Ada compiler (for Solaris) . It doesn't work with GNAT (for NT) since "+" is not defined in its package system. How can I make it work? Oliver