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=3.8 required=5.0 tests=BAYES_00,INVALID_MSGID, RATWARE_MS_HASH,RATWARE_OUTLOOK_NONAME autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b1850e397df49d95 X-Google-Attributes: gid103376,public From: "Jerry van Dijk" Subject: Re: How to convert an Fixed_Point to to an Integer ? Date: 1996/12/23 Message-ID: <01bbf0c2$e19ff9a0$5f2d5c8b@jerryware>#1/1 X-Deja-AN: 205572484 references: <01bbf058$cbdbf980$LocalHost@jerryware> organization: *JerryWare HQ*, Haarlem, Holland newsgroups: comp.lang.ada Date: 1996-12-23T00:00:00+00:00 List-Id: To prevent further mail pointer out the obvious (not working) answer: GNAT 3.05 (960607) Copyright 1991-1996 Free Software Foundation, Inc. Compiling: oops.adb (source file time stamp: 1996-12-23 12:15:28) 1. with Ada.Calendar; use Ada.Calendar; 2. 3. procedure Oops is 4. Now : Time; 5. The_Time : Integer; 6. begin 7. Now := Clock; 8. The_Time := Integer (Now); | >>> illegal operand for numeric conversion 9. end Oops;