I've taken over maintenance of an MSP430 code base and ran across
/*@-declundef@*/
What does that do?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I've taken over maintenance of an MSP430 code base and ran across
/*@-declundef@*/
What does that do?
It's a comment, so the C compiler ignores it. It might be a directive of some sort to another tool which processes the source code, such as doxygen.
Thanks and regards,
-George