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-Thread: 103376,91b14dfe22ec5b78,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews1.google.com!not-for-mail From: aschwarz@acm.org (skidmarks) Newsgroups: comp.lang.ada Subject: Signed vs Natural/32-bits vs 31 bits Date: 25 Oct 2004 08:43:19 -0700 Organization: http://groups.google.com Message-ID: <35f054ea.0410250743.45a14771@posting.google.com> NNTP-Posting-Host: 12.72.61.183 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1098718999 309 127.0.0.1 (25 Oct 2004 15:43:19 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 25 Oct 2004 15:43:19 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:5693 Date: 2004-10-25T08:43:19-07:00 List-Id: I'm using gcc under Cygwin and gcc with Mingw and am getting the following warning: 476. function D_Datum is new Unchecked_Conversion(Datum_Type, AIL_List.Datum_Type); | >>> warning: types for unchecked conversion have different sizes >>> warning: size of "DATUM_TYPE" is 32, size of "DATUM_TYPE" is 31 >>> warning: 1 trailing bits of source will be ignored I understand what the message means but what is the operational effect? What does 'ignored' mean in this context? art