Przemyslaw Czerpak escreveu:
On Fri, 17 Apr 2009, Ranier Vilela wrote:

Hi,
But, Przemek can you, please, fix this:
Try it after:
   2009-04-23 22:11 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

best regards,
Przemek
Ok, confirmed!
Thanks Przemek!

But, still warnings:

cl.exe -nologo -I. -I../../../../include -Gs -TP -W4 -wd4127 -Wall -O2xtyb1 -Gy -GS- -GR- -EHs- -DNDEBUG -DHB_FM_STATISTICS_OFF -MT -c macroy.c -Fomacroy.obj
macroy.c
macroy.c(1797) : warning C4065: switch statement contains 'default' but no 'case' labels
macroy.c:
line 1792: switch (yytype)
line 1793:     {
line 1794:
line 1795:       default:
line 1796:     break;
line 1797:     }


cl.exe -nologo -I. -I../../../../include -Gs -TP -W4 -wd4127 -Wall -O2xtyb1 -Gy -GS- -GR- -EHs- -DNDEBUG -DHB_FM_STATISTICS_OFF -MT -c ../../complex.c -Focomplex.obj
complex.c
../../complex.c(510) : warning C4806: '==' : unsafe operation: no value of type 'bool' promoted to type 'int' can equal the given constant
complex.c:
510:               if( !pToken->len == 3 || pToken->value[ 2 ] != '0' )
511:                  iYear = -1;

-> Maybe if( pToken->len == 3 || pToken->value[2] != '0') // without the ! operator

Best regards,

Ranier Vilela
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to