fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
The Warning-Level Option (/W)
                                             Up Contents Index Back
─────The Warning-Level Option (/W)──────────────────────────────────────────
 
     The /W option suppresses compiler warning messages.
 
     Syntax: /W{0 | 1 | 2}
 
     Any message beginning with F4 is a compiler warning message.
     Warnings indicate potential problems (rather than actual errors)
     with statements that may not compile as you intend.
 
     /W1 (the default) causes the compiler to display warning messages.
     /W0 turns off warning messages. /W2 suppresses the following:
 
          F4998  variable used but not declared
 
          F4999  variable declared but not used
 
     /W0 and /W2 apply to the remainder of the command line or until
     the next occurrence of /W1 on the command line.
                                    -♦-