Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm finding __attribute__ ((warn_unused_result)) to be very useful as a means of encouraging developers not to ignore error codes returned by functions, but I need this to work with MSVC as well as gcc and gcc-compatible compilers such as ICC. Do the Microsoft Visual Studio C/C++ compilers have an equivalent mechanism ? (I've tried wading through MSDN without any luck so far.)

share|improve this question
2  
Sure- it's called an exception. – DeadMG Nov 19 '10 at 15:30
4  
@DeadMG: yes, unfortunately that's not quite as immediate as a compiler warning, and usually someone else has to fix the problem. – Paul R Nov 19 '10 at 15:34

2 Answers

up vote 5 down vote accepted

Some editions of VisualStudio come packaged with a static analysis tool that used to be called PREFast (Now called simply "Code Analysis for C/C++"). PREFast uses annotations to mark up code. One of those annotations, MustCheck, does what you're looking for.

share|improve this answer
Looks interesting - can you fix the link for MustCheck ? – Paul R Nov 19 '10 at 15:36
@John + @Paul: microsoft.com/whdc/devtools/tools/annotations.mspx <-- The first example in the docx contains the __checkReturn annotation ;) – Billy ONeal Nov 19 '10 at 15:46
'Prefast' is now called 'Code Analysis for C/C++' - msdn.microsoft.com/en-us/library/d3bbz7tz.aspx – Steve Townsend Nov 19 '10 at 15:46
@Paul: fixed. sorry. @Billy, @Steve: thanks, edited – John Dibling Nov 19 '10 at 15:53
1  
@Paul R - note that this will slow down your builds a lot, and also generate a lot of warnings that you may not care about. I would do this periodically instead of on every build, to avoid negative feedback on what's a valuable tool. – Steve Townsend Nov 19 '10 at 17:09
show 2 more comments

As far as I'm aware, the MS compilers don't have an equivalent pragma or attribute - the only "unused" type warning you can get is for variables when you have the optimizer turned on with the appropriate warning level.

share|improve this answer
Thanks - it's somewhat ironic that the platform that needs this the most is one whose compiler does not support it. – Paul R Nov 19 '10 at 15:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.