cpp/preprocessor/error — различия между версиями
Материал из cppreference.com
< cpp | preprocessor
Olya (обсуждение | вклад) |
Olya (обсуждение | вклад) м |
||
Строка 1: | Строка 1: | ||
− | {{title| | + | {{title|}} |
{{cpp/preprocessor/navbar}} | {{cpp/preprocessor/navbar}} | ||
Shows the given error message and renders the program ill-formed. | Shows the given error message and renders the program ill-formed. |
Версия 06:26, 10 сентября 2021
Shows the given error message and renders the program ill-formed.
Syntax
#error error_message
|
|||||||||
Explanation
After encountering the #error
directive, an implementation displays the diagnostic message error_message and renders the program ill-formed (the compilation stops).
error_message can consist of several words not necessarily in quotes.
See also
Документация C по
error directive |