More C++ Options > Diagnostics tab

(Builder: Project > Language Options for Selected Files... > C++ tab > More Options... > Diagnostics tab)

Change certain ANSI C++ errors to warnings

Non-fatal ANSI C++ errors are downgraded to warnings.

Suppress all warnings

Suppresses all warning level messages from the compiler.

Quit building if warnings occur

Stop building when a warning occurs. Without the option, the build continues when warnings occur but stops when an error occurs.

Issue remarks

Issues remark level messages from the compiler, equivalent to mild warnings.

No "used before set" warnings

Does not issue warnings on local automatic variables used before their values are set.

No warnings for old for-loop scoping

If the new for-loop scoping is used, do NOT give a warning for programs which would have different behavior under the old rules.

Display message numbers

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.

Display brief messages

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.

Don't wrap diagnostic messages

Displays messages in single long lines, instead of wrapping them.

Maximum number of error mgs

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.

Suppress specific diagnostic

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.

Change severity to remark

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.

Change severity to warning

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.

Change severity to error

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.


Previous

Next



Copyright © 1999, Green Hills Software. All rights reserved.