On Friday, November 1, 2013 4:19:26 PM UTC-4, Arendell wrote:
>
> \cryptopp\cryptlib.h(402): warning C4100: 'ivLength' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(402): warning C4100: 'iv' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(511): warning C4100: 'n' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(659): warning C4100: 'footerLength' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(659): warning C4100: 'messageLength' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(659): warning C4100: 'headerLength' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(673): warning C4100: 'length' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(673): warning C4100: 'input' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(833): warning C4100: 'parameters' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(835): warning C4100: 'blocking' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(857): warning C4100: 'propagation' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(1016): warning C4100: 'newAttachment' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(1065): warning C4100: 'bt' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(1072): warning C4100: 'bt' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(1081): warning C4100: 'n' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(1084): warning C4100: 'storedPrecomputation' : 
>> unreferenced formal parameter
>> \cryptopp\cryptlib.h(1087): warning C4100: 'storedPrecomputation' : 
>> unreferenced formal parameter
>> \cryptopp\cryptlib.h(1107): warning C4100: 'params' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(1107): warning C4100: 'rng' : unreferenced formal 
>> parameter
>> \cryptopp\cryptlib.h(1308): warning C4100: 'recoverablePartLength' : 
>> unreferenced formal parameter
>> \cryptopp\cryptlib.h(1341): warning C4100: 'digestSize' : unreferenced 
>> formal parameter
>> \cryptopp\cryptlib.h(1341): warning C4100: 'digest' : unreferenced formal 
>> parameter
>
> You can add '#pragma warning (disable: 4100 ...)' in stdafx.h to disable 
these.

There's only a few offenders, so you could add it directly to the Crypto++ 
files if desired so you don't turn it off for the project. 

Or, you could do the following before including Crpyto++ headers in 
stdafx.h. I usually use this for Windows headers too since they can be 
noisy.

    #pragma warning (push, 2)
    # include <cryptopp/cryptlib.h>
    #pragma warning (pop)

See http://msdn.microsoft.com/en-us/library/2c8f766e.aspx.

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to