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 X-Google-Thread: 103376,e52667a1a139f061 X-Google-Attributes: gid103376,public From: Alejandro Villanueva <190921@cepsz.unizar.es> Subject: Re: limited private mode Date: 2000/10/18 Message-ID: <39ED9327.D7CFA806@cepsz.unizar.es>#1/1 X-Deja-AN: 682838186 Content-Transfer-Encoding: 8bit References: <8sj2ta$5on$1@slb7.atl.mindspring.net> Content-Type: text/plain; charset=iso-8859-1 X-Complaints-To: usenet@news.unizar.es X-Trace: news.unizar.es 971871957 22469 155.210.155.32 (18 Oct 2000 12:25:57 GMT) Organization: Universidad de Zaragoza Mime-Version: 1.0 NNTP-Posting-Date: 18 Oct 2000 12:25:57 GMT Newsgroups: comp.lang.ada Date: 2000-10-18T12:25:57+00:00 List-Id: arcele wrote: > I'm trying to write a driver for a generic package I have written, and I am > getting an error that reads 'expect name of generic package in > instantiation'. does anyone know what this error means? and how i can fix > it? thnx Well, not looking at your code, the only thing I can think of is that you are *not* instantiating your generic package. If you post your code here we'll be able to give you a precise answer ;-) For example: generic Max: natural; package My_Generic_Package is ... end My_Generic_Package; You should instantiate it as: My_Not_Generic_Package is new My_Generic_Package (Max => 10); Hope this helps, ------------------------------------------------------ �Quieres Cobrar por Navegar en Internet? Visita: http://www.navegana.com/dinero/flintstone.html ------------------------------------------------------ Alejandro Villanueva 190921@cepsz.unizar.es ------------------------------------------------------