We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
#pragma option -r /** * - documentation */ #pragma deprecated - message Func() {} main() { Func(); }
Output:
warning 234: function is deprecated (symbol "Func") - message
#pragma option -r main() { Func(); } /** * - documentation */ #pragma deprecated - message Func() {}
warning 234: function is deprecated (symbol "Func") - documentation
They both use the ->documentation field in the symbol struct, and clearly order matters.
->documentation
The text was updated successfully, but these errors were encountered:
Furthermore:
//#pragma option -r main() { Func(); } /** * - documentation */ #pragma deprecated - message Func() {}
warning 234: function is deprecated (symbol "Func")
Disabling pawndoc means neither get used.
Sorry, something went wrong.
No branches or pull requests
Output:
Output:
They both use the
->documentation
field in the symbol struct, and clearly order matters.The text was updated successfully, but these errors were encountered: