bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #13479] Compile errors and warnings - Microsoft compiler 13.10 (.NE


From: Jerker Bäck
Subject: [bug #13479] Compile errors and warnings - Microsoft compiler 13.10 (.NET 7.1)
Date: Mon, 1 May 2006 02:25:52 +0000
User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)

Follow-up Comment #4, bug #13479 (project make):

Paul, can we close this one also?
The strerror bug is fixed and there's no point to have an old compile report
active. My intent was merely to give you a chance to clean up the code from
all this warnings. The majority is of type casting warnings and could easy be
explicit cast to the right type.

Example:
rule.c(393) : warning C4244: '=' : conversion from 'int' to 'char', possible
loss of data
expands to:
r->terminal = terminal;

Solution:
r->terminal = (char)terminal;

Currently, in 3.81 release, about 25 C4244 warnings is issued.

Even if you think it's a minor thing, besides annoying it just look so ugly
with several hundred warnings and it is so completly unnecessary. I sense
that the amount of warnings have decreased lately though.

If you want, I can send you a new compile report from the 3.81 release -
otherwise just close it.



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=13479>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]