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: 107e1d,aea355e554e5908d,start X-Google-Attributes: gid107e1d,public X-Google-Thread: 103376,aea355e554e5908d,start X-Google-Attributes: gid103376,public From: noiraud@cenaath.cena.dgac.fr Subject: Generic child unit renaming Date: 1999/04/21 Message-ID: <7fkvbt$q1r$1@ilana.cenaath.cena.dgac.fr>#1/1 X-Deja-AN: 469436440 Organization: Centre d'Etudes de la Navigation Aerienne, France Newsgroups: fr.comp.lang.ada,comp.lang.ada Date: 1999-04-21T00:00:00+00:00 List-Id: I would like to rename Math_Extension an extension of the generic package Ada.Numerics.Generic_Elementary_Functions. Thus, I created a generic child unit : generic package Ada.Numerics.Generic_Elementary_Functions.Extensions is function Log10 (X : Float_Type'Base) return Float_Type'Base; function Asin (X : Float_Type'Base) Return Float_Type'Base renames Arcsin; end Ada.Numerics.Generic_Elementary_Functions.Extensions; and I tried the following renaming : with Ada.Numerics.Generic_Elementary_Functions.Extensions; generic package Math_Extension renames Ada.Numerics.Generic_Elementary_Functions.Extensions; The GNAT compiler refused it : >>> invalid prefix in selected component "Generic_Elementary_Functions". I read that renaming is possible if realized in the parent unit, but I can't do it because Generic_Elementary_Functions belongs to the predefined library. Could anyone help me ? Thanks in advance.