C/C++ Compiler (cl.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.
D4014
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Command-line warning D4014
 
     invalid value 'number1' for 'option'; assuming 'number2'
 
     The given option was specified with an invalid numeric argument.
     The compiler assumed the value <number2>.
 
     For example, the following command line generates this warning:
 
          cl /Zp3 program.c
 
     In this example, 3 is an invalid value. Valid arguments for the
     /Zp option are 1, 2, and 4.
                                    -♦-