(Builder: Project > Language Options for Selected Files... > C++ tab > More Options... > Diagnostics tab)
Non-fatal ANSI C++ errors are downgraded to warnings.
Suppresses all warning level messages from the compiler.
Stop building when a warning occurs. Without the option, the build continues when warnings occur but stops when an error occurs.
Issues remark level messages from the compiler, equivalent to mild warnings.
Does not issue warnings on local automatic variables used before their values are set.
If the new for-loop scoping is used, do NOT give a warning for programs which would have different behavior under the old rules.
Displays the error message number in the diagnostic messages. These message number may be used in the Suppress specific diagnostic and Change severity to... text fields.
Enables an error reporting mode in which a single line error message is produced. The original source line and pointer to the location of the error within that line is not displayed.
Displays messages in single long lines, instead of wrapping them.
Forces the compiler to abandon the compilation after this number of error messages, not including warning and remark level messages. The default limit is 100.
Suppresses diagnostic messages corresponding to the given error numbers. Multiple error numbers may be listed in a comma separated list. Use the Display message numbers check box to list error numbers in the diagnostic output.
Overrides the normal severity of the specified diagnostic message, making it a remark, whenever possible. Multiple error messages may be listed in a comma separated list. Use the Display message numbers check box to list error numbers in the diagnostic output.
Overrides the normal severity of the specified diagnostic message, making it a warning, whenever possible. Multiple error numbers may be listed in a comma separated list. Use the Display message numbers check box to list error numbers in the diagnostic output.
Overrides the normal severity of the specified diagnostic message, making it a fatal error. Multiple error number may be listed in a comma separated list. Use the Display message numbers check box to list the error numbers in the diagnostic output.