Tag Archives: web2.0

rc tools

Is there a C/C++ static analysis tool that will check for one function to follow another?

I have a series of functions that set a return code (rc), and I need to make sure that every time rc is set, it is checked for an error.
Let me clarify:
returnCode = someFunctionCall(..);
ERROR_CHECK_MACRO(returnCode);
What sort of code analysis tool should [...]