I've got a project that uses Crypto++ for a few hashing functions. Recently, I decided to clean things up a bit and use warning level 4 on MSVC++.

Here's what my source looks like:

#pragma warning(push)
#pragma warning(disable: 4100) //Unreferenced formal parameter
#pragma warning(disable: 4244) //Conversion, possible loss of data
#pragma warning(disable: 4512) //Assignment operator could not be generated
#pragma warning(disable: 4127) //Conditional expression is constant
#pragma warning(disable: 4505) //Unreferenced local function has been removed
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
#include <cryptopp/md5.h>
#include <cryptopp/sha.h>
#pragma warning(pop)

Despite disable: 4505, I still get this warning:

c:\cppdev\cryptopp561\cryptopp\misc.h(548): warning C4505: 'CryptoPP::StringNarrow' : unreferenced local function has been removed

and my project does not build.

How can I work around this? Basically, I'd just like to disable the warning for third party code; I don't want to be editing cryptopp itself to fix the error if I can avoid doing so.

link|improve this question

Warnings should not stop you from building, right? – Tyler Hyndman Nov 12 '11 at 22:03
2  
@tylo42: many projects set "treat warnings as errors" option – Vlad Nov 12 '11 at 22:03
@Vlad: thanks, I was not aware of that option. – Tyler Hyndman Nov 12 '11 at 22:05
feedback

2 Answers

up vote 6 down vote accepted

The compiler can only determine unreferenced functions after it finished parsing the compiled source file. Move the corresponding #pragma disable out of the push/pop scope so it will still be in effect at the end of the file:

#pragma warning(push)
#pragma warning(disable: 4100) //Unreferenced formal parameter
#pragma warning(disable: 4244) //Conversion, possible loss of data
#pragma warning(disable: 4512) //Assignment operator could not be generated
#pragma warning(disable: 4127) //Conditional expression is constant
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
#include <cryptopp/md5.h>
#include <cryptopp/sha.h>
#pragma warning(pop)
#pragma warning(disable: 4505) //Unreferenced local function has been removed
link|improve this answer
2  
This disables the warning for my code, not just the third party code. – Billy ONeal Nov 12 '11 at 22:53
1  
@BillyONeal: Yes, and he's saying that it's simply going to be all or nothing, because the compiler won't trigger this warning until after the code is compiled. – GManNickG Nov 12 '11 at 23:05
According to MS this can't be done using the pragma: support.microsoft.com/kb/947783 In this particular case you can silence the compiler this way - but this won't work all over the place probably: void useUnreferenced() { void* dummyReferenceStringNarrow = CryptoPP::StringNarrow; (void)dummyReferenceStringNarrow ; } – Tobiesque Nov 12 '11 at 23:08
This is correct. There are ways to isolate crappy third party code, #include is not one of them. – Hans Passant Nov 12 '11 at 23:09
2  
An extra level of indirection solves every problem. That's an old horse that's appropriate here, write a wrapper. – Hans Passant Nov 12 '11 at 23:30
show 2 more comments
feedback

If you just need a few hashing functions, create a separate source file with 4505 disabled to include the crapto headers and write your own header file to define the function prototypes you use.

link|improve this answer
1  
Lol @ crapto. Perhaps I should look around for a better md5 + sha library. – Billy ONeal Nov 13 '11 at 20:59
feedback

Your Answer

 
or
required, but never shown

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