From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29101 invoked by alias); 28 Feb 2011 05:01:23 -0000 Received: (qmail 29093 invoked by uid 22791); 28 Feb 2011 05:01:22 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 28 Feb 2011 05:01:16 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 667272BABAE; Mon, 28 Feb 2011 00:01:14 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ki0VgqfBHzc1; Mon, 28 Feb 2011 00:01:14 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id F29462BABAB; Mon, 28 Feb 2011 00:01:13 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 8B5B6145A56; Mon, 28 Feb 2011 09:01:02 +0400 (RET) Date: Mon, 28 Feb 2011 05:08:00 -0000 From: Joel Brobecker To: Michael Snyder Cc: "gdb-patches@sourceware.org" Subject: Re: [RFA] gdb.cp/overload.cc: add cast to prevent compiler warning Message-ID: <20110228050102.GE30306@adacore.com> References: <4D6ABBFF.5030401@vmware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D6ABBFF.5030401@vmware.com> User-Agent: Mutt/1.5.20 (2009-06-14) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00878.txt.bz2 > 2011-02-27 Michael Snyder > > * gdb.cp/overload.cc: Add cast to prevent compiler warning. > > Index: gdb.cp/overload.cc > =================================================================== > RCS file: /cvs/src/src/gdb/testsuite/gdb.cp/overload.cc,v > retrieving revision 1.7 > diff -u -p -u -p -r1.7 overload.cc > --- gdb.cp/overload.cc 4 Nov 2010 20:43:25 -0000 1.7 > +++ gdb.cp/overload.cc 27 Feb 2011 21:00:47 -0000 > @@ -110,7 +110,7 @@ int main () > unsigned long arg10 =10; > float arg11 =100.0; > double arg12 = 200.0; > - int arg13 = 200.0; > + int arg13 = (int) 200.0; Why not just write this as: int arg13 = 200; ? -- Joel