Re: not a warning?



David Webber wrote:

How about

if(1)....

and

while(1) {....}

This last of course involves a trivial test of the same kind, which
actually *is* useful.

And both IIRC do produce warnings (on high enough warning level).
If you want an endless loop with no warnings VC forces you to use

for( ; ; )
{
}

--
Eugene
http://www.gershnik.com




.



Relevant Pages

  • Re: Eval Errors
    ... >> longer printing the error messages yet the strange messages remain. ... >> That looks like a bug to me. ... > IIRC it was determined then that 'eval' focus was to allow testing of ... What warnings a piece of code ...
    (perl.beginners)
  • Re: Adding a delimiter inbetween number characters and letter characters
    ... >use warnings; ... >use strict; ... IIRC the OP just wanted to put in a delimiter between a ...
    (comp.lang.perl.misc)
  • Re: FRM-40405 : No changes to apply error.
    ... Higher values supress more (5 is informational, 10 warnings, 35 errors, iirc). ... You will have to search the docco yourself, can't recall the exact parameter name ...
    (comp.databases.oracle.tools)
  • Re: strcpy_s and friends
    ... David Webber wrote: ... but it's effect seems rather patchy. ... Which warnings are not disabled by it? ... MVP - VC ...
    (microsoft.public.vc.language)
  • Re: Warning on Sun/C++
    ... > I was having trouble since long time removing some of the warnings ... Don't want to spread FUD, but IIRC 5.0 was not the best version of the ... Sun compiler, compared to 5.2 and later at least (not that this should ...
    (comp.unix.solaris)

Loading