The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
MS VC++ - More Better Warnings

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Daniel Berger

Posts: 1383
Nickname: djberg96
Registered: Sep, 2004

Daniel Berger is a Ruby Programmer who also dabbles in C and Perl
MS VC++ - More Better Warnings Posted: Feb 7, 2008 10:50 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Daniel Berger.
Original Post: MS VC++ - More Better Warnings
Feed Title: Testing 1,2,3...
Feed URL: http://djberg96.livejournal.com/data/rss
Feed Description: A blog on Ruby and other stuff.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Daniel Berger
Latest Posts From Testing 1,2,3...

Advertisement
I've been doing my own cleanup of bignum.c using cl 14 only to discover warnings like this:
bignum.c(836) : warning C4146: unary minus operator applied to unsigned type, result still unsigned

Sure enough the (now ANSI) source looks like this:
unsigned long rb_big2ulong_pack(VALUE x)
{   
   unsigned LONG_LONG num = big2ulong(x, "unsigned long");

   if(!RBIGNUM(x)->sign)
      return -num; /* Uh...what? */

   return num;
}

These only show up in MS VC++ if you compile with warnings on (I'm running at -W3). They do NOT show up with either gcc 3.x or SSC 11 with full warnings on (last I checked).

The bignum source code is littered with this crap, btw.

Read: MS VC++ - More Better Warnings

Topic: The Arc Challenge Previous Topic   Next Topic Topic: PicLens

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use