-change_message [V1.07.00 or later]
|
This option changes specified warning messages into error messages.
[Specification format]
-change_message=error={num|num1-num2}[, ...]
|
[Detailed description]
- | This option changes specified warning messages into error messages. |
The message numbers that are targeted by this option are W0510000 to W0549999.
- | Specify the rightmost 5 digits of the message number as num, num1, and num2. |
If num1-num2 is specified, it is assumed that error numbers within the range have been specified.
- | If num or num1-num2 is omitted, all target warning messages are changed into error messages. |
- | When this option is specified more than once, all specifications will be valid. |
- | If a message number that does not exist is specified, the specification is ignored. |
For message numbers, see "10. MESSAGE".
[Example of use]
- | To change W0520000 to W0549999 into error messages, describe as: |
>ccrh -change_message=error=20000-49999 a.c
|