Error directive
Материал из cppreference.com
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 |