|
View:
New views
1 Messages
—
Rating Filter:
Alert me
|
|
|
Intel/gcc compilation warningsI am using (subset of) crypto++ library as part of my program, compiled on a set of different platforms/compilers. Some problems I'd like to report: 1. library fails to compile on latest Maemo SDK v5 for ARM architecture (gcc v4.2.1) 2. on Ubuntu 9.04 i386 (gcc v4.3.3) compiler generates a lot of warnings when additional warning flags are used Used gcc flags were: -Wall -Wextra -pedantic -Weffc++ -Waggregate- return -Wcast-align -Wcast-qual -Wconversion -Wdisabled-optimization - Wfloat-equal -Wformat-y2k -Wimport -Winit-self -Winline -Winvalid-pch - Wunsafe-loop-optimizations -Wlong-long -Wmissing-braces -Wmissing- field-initializers -Wmissing-format-attribute -Wmissing-include-dirs - Wmissing-noreturn -Wpacked -Wpointer-arith -Wredundant-decls -Wreturn- type -Wsequence-point -Wshadow -Wsign-compare -Wstack-protector - Wswitch-default -Wswitch-enum -Wunreachable-code -Wunused -Wvariadic- macros -Wwrite-strings -Wcast-align -Wcast-qual -Wpointer-arith - Woverloaded-virtual -Wnon-virtual-dtor -Wctor-dtor-privacy -Wno-long- long -Wundef -Wredundant-decls -Wconversion -Wunused-macros -Wswitch- default Note that a lot of complaints are of type "warning: unused parameter" which could be solved by defining and using macro: #define UNUSED_PARAMETER(p) (void)(p) and adding code like: UNUSED_PARAMETER(myobj); to prevent this warning 3. on Windows XP (Visual studio 2005 with Intel C++ 11.0.061 [IA-32]) compiler generates lot of warnings I'd hope you'll consider to fix all warnings because this will make it easier to spot real bugs reported in the total project output. Additionally, some warnings might indicate potential bugs. Here are the actual outputs by respective issues: 1. make libcryptopp.a g++ -DNDEBUG -g -O2 -fPIC -pipe -c adler32.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c algebra.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c algparam.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c asn.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c bfinit.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c blowfish.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c cpu.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c crc.cpp g++ -DNDEBUG -g -O2 -fPIC -pipe -c cryptlib.cpp cryptlib.cpp:818: internal compiler error: in reference_to_unused, at dwarf2out.c:10094 Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://gcc.gnu.org/bugs.html> for instructions. make: *** [cryptlib.o] Error 1 2. In file included from ./cryptlib/simple.h:9, from ./cryptlib/filters.h:4, from ./cryptlib/zdeflate.h:4, from ./cryptlib/gzip.h:4, ./cryptlib/cryptlib.h:324: warning: unused parameter ÔÇśnameÔÇÖ ./cryptlib/cryptlib.h:324: warning: unused parameter ÔÇśvalueTypeÔÇÖ ./cryptlib/cryptlib.h:324: warning: unused parameter ÔÇśpValueÔÇÖ ./cryptlib/cryptlib.h:409: warning: unused parameter ÔÇśivÔÇÖ ./cryptlib/cryptlib.h:409: warning: unused parameter ÔÇśivLengthÔÇÖ ./cryptlib/cryptlib.h:520: warning: unused parameter ÔÇśnÔÇÖ ./cryptlib/cryptlib.h:670: warning: unused parameter ÔÇśheaderLengthÔÇÖ ./cryptlib/cryptlib.h:670: warning: unused parameter ÔÇśmessageLengthÔÇÖ ./cryptlib/cryptlib.h:670: warning: unused parameter ÔÇśfooterLengthÔÇÖ ./cryptlib/cryptlib.h:684: warning: unused parameter ÔÇśinputÔÇÖ ./cryptlib/cryptlib.h:684: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/cryptlib.h:846: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/cryptlib.h:848: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/cryptlib.h:870: warning: unused parameter ÔÇśpropagationÔÇÖ ./cryptlib/cryptlib.h:1029: warning: unused parameter ÔÇśnewAttachmentÔÇÖ ./cryptlib/cryptlib.h:1078: warning: unused parameter ÔÇśbtÔÇÖ ./cryptlib/cryptlib.h:1085: warning: unused parameter ÔÇśbtÔÇÖ ./cryptlib/cryptlib.h:1094: warning: unused parameter ÔÇśnÔÇÖ ./cryptlib/cryptlib.h:1097: warning: unused parameter ÔÇśstoredPrecomputationÔÇÖ ./cryptlib/cryptlib.h:1100: warning: unused parameter ÔÇśstoredPrecomputationÔÇÖ ./cryptlib/cryptlib.h:1120: warning: unused parameter ÔÇśrngÔÇÖ ./cryptlib/cryptlib.h:1120: warning: unused parameter ÔÇśparamsÔÇÖ ./cryptlib/cryptlib.h:1321: warning: unused parameter ÔÇśrecoverablePartLengthÔÇÖ ./cryptlib/cryptlib.h:1354: warning: unused parameter ÔÇśdigestÔÇÖ ./cryptlib/cryptlib.h:1354: warning: unused parameter ÔÇśdigestSizeÔÇÖ In file included from ./cryptlib/filters.h:4, from ./cryptlib/zdeflate.h:4, from ./cryptlib/gzip.h:4, ./cryptlib/simple.h:192: warning: unused parameter ÔÇśtargetÔÇÖ ./cryptlib/simple.h:192: warning: unused parameter ÔÇśchannelÔÇÖ ./cryptlib/simple.h:192: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h:194: warning: unused parameter ÔÇśtargetÔÇÖ ./cryptlib/simple.h:194: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:194: warning: unused parameter ÔÇśendÔÇÖ ./cryptlib/simple.h:194: warning: unused parameter ÔÇśchannelÔÇÖ ./cryptlib/simple.h:194: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h:202: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/simple.h:203: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:203: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/simple.h:203: warning: unused parameter ÔÇśmessageEndÔÇÖ ./cryptlib/simple.h:203: warning: unused parameter ÔÇśblockingÔÇÖ In file included from ./cryptlib/zdeflate.h:4, from ./cryptlib/gzip.h:4, ./cryptlib/filters.h:92: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/filters.h:172: warning: unused parameter ÔÇśfirstSizeÔÇÖ ./cryptlib/filters.h:172: warning: unused parameter ÔÇśblockSizeÔÇÖ ./cryptlib/filters.h:172: warning: unused parameter ÔÇślastSizeÔÇÖ ./cryptlib/filters.h:174: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/filters.h:179: warning: unused parameter ÔÇśinStringÔÇÖ ./cryptlib/filters.h:203: warning: unused parameter ÔÇśinStringÔÇÖ ./cryptlib/filters.h:203: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/filters.h:249: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/filters.h:698: warning: unused parameter ÔÇśtargetÔÇÖ ./cryptlib/filters.h:698: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/filters.h:698: warning: unused parameter ÔÇśendÔÇÖ ./cryptlib/filters.h:698: warning: unused parameter ÔÇśchannelÔÇÖ ./cryptlib/filters.h:698: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/filters.h:715: warning: unused parameter ÔÇśparametersÔÇÖ In file included from ./cryptlib/gzip.h:4, ./cryptlib/zdeflate.h:78: warning: unused parameter ÔÇśstringÔÇÖ ./cryptlib/zdeflate.h:78: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/misc.h: In function ÔÇśstd::string CryptoPP::IntToString(T, unsigned int) [with T = unsigned int]ÔÇÖ: ./cryptlib/simple.h:35: instantiated from here ./cryptlib/misc.h:385: warning: comparison of unsigned expression < 0 is always false ./cryptlib/algparam.h: In constructor ÔÇśCryptoPP::ConstByteArrayParameter::ConstByteArrayParameter(const T&, bool) [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]ÔÇÖ: ./cryptlib/filters.h:791: instantiated from here ./cryptlib/algparam.h:26: warning: unused variable ÔÇścryptopp_assert_26ÔÇÖ ./cryptlib/secblock.h: At global scope: ./cryptlib/secblock.h: In instantiation of ÔÇśvoid CryptoPP::NullAllocator<T>::deallocate(void*, typename CryptoPP::AllocatorBase<T>::size_type) [with T = unsigned char]ÔÇÖ: ./cryptlib/secblock.h:238: instantiated from ÔÇśvoid CryptoPP::FixedSizeAllocatorWithCleanup<T, S, A, T_Align16>::deallocate (void*, typename CryptoPP::AllocatorBase<T>::size_type) [with T = unsigned char, unsigned int S = 256u, A = CryptoPP::NullAllocator<unsigned char>, bool T_Align16 = false]ÔÇÖ ./cryptlib/secblock.h:297: instantiated from ÔÇśCryptoPP::SecBlock<T, A>::~SecBlock() [with T = unsigned char, A = CryptoPP::FixedSizeAllocatorWithCleanup<unsigned char, 256u, CryptoPP::NullAllocator<unsigned char>, false>]ÔÇÖ ./cryptlib/secblock.h:456: instantiated from here ./cryptlib/secblock.h:185: warning: unused parameter ÔÇśpÔÇÖ ./cryptlib/secblock.h:185: warning: unused parameter ÔÇśnÔÇÖ ./cryptlib/secblock.h: In instantiation of ÔÇśvoid CryptoPP::NullAllocator<T>::deallocate(void*, typename CryptoPP::AllocatorBase<T>::size_type) [with T = unsigned int]ÔÇÖ: ./cryptlib/secblock.h:238: instantiated from ÔÇśvoid CryptoPP::FixedSizeAllocatorWithCleanup<T, S, A, T_Align16>::deallocate (void*, typename CryptoPP::AllocatorBase<T>::size_type) [with T = unsigned int, unsigned int S = 286u, A = CryptoPP::NullAllocator<unsigned int>, bool T_Align16 = false]ÔÇÖ ./cryptlib/secblock.h:297: instantiated from ÔÇśCryptoPP::SecBlock<T, A>::~SecBlock() [with T = unsigned int, A = CryptoPP::FixedSizeAllocatorWithCleanup<unsigned int, 286u, CryptoPP::NullAllocator<unsigned int>, false>]ÔÇÖ ./cryptlib/secblock.h:456: instantiated from here ./cryptlib/secblock.h:185: warning: unused parameter ÔÇśpÔÇÖ ./cryptlib/secblock.h:185: warning: unused parameter ÔÇśnÔÇÖ ./cryptlib/algparam.h: In member function ÔÇśvoid CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void*) const [with T = CryptoPP::RandomNumberGenerator*]ÔÇÖ: ./cryptlib/algparam.h:322: warning: unused variable ÔÇśpÔÇÖ ./cryptlib/simple.h: At global scope: ./cryptlib/simple.h: In instantiation of ÔÇśsize_t CryptoPP::InputRejecting<T>::Put2(const byte*, size_t, int, bool) [with T = CryptoPP::Filter]ÔÇÖ: ./cryptlib/simple.h:88: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇśmessageEndÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśsize_t CryptoPP::InputRejecting<T>::ChannelPut2(const std::string&, const byte*, size_t, int, bool) [with T = CryptoPP::Filter]ÔÇÖ: ./cryptlib/simple.h:93: warning: unused parameter ÔÇśchannelÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśmessageEndÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśvoid CryptoPP::CustomSignalPropagation<T>::IsolatedInitialize(const CryptoPP::NameValuePairs&) [with T = CryptoPP::Sink]ÔÇÖ: ./cryptlib/simple.h:117: warning: unused parameter ÔÇśparametersÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśbool CryptoPP::CustomFlushPropagation<T>::IsolatedFlush(bool, bool) [with T = CryptoPP::Sink]ÔÇÖ: ./cryptlib/simple.h:106: warning: unused parameter ÔÇśhardFlushÔÇÖ ./cryptlib/simple.h:106: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśbool CryptoPP::Unflushable<T>::IsolatedFlush(bool, bool) [with T = CryptoPP::Filter]ÔÇÖ: ./cryptlib/simple.h:62: warning: unused parameter ÔÇśhardFlushÔÇÖ ./cryptlib/simple.h:62: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśbool CryptoPP::Bufferless<T>::IsolatedFlush(bool, bool) [with T = CryptoPP::Filter]ÔÇÖ: ./cryptlib/simple.h:52: warning: unused parameter ÔÇśhardFlushÔÇÖ ./cryptlib/simple.h:52: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśbool CryptoPP::Bufferless<T>::IsolatedFlush(bool, bool) [with T = CryptoPP::Sink]ÔÇÖ: ./cryptlib/simple.h:52: warning: unused parameter ÔÇśhardFlushÔÇÖ ./cryptlib/simple.h:52: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśsize_t CryptoPP::InputRejecting<T>::Put2(const byte*, size_t, int, bool) [with T = CryptoPP::BufferedTransformation]ÔÇÖ: ./cryptlib/simple.h:88: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇśmessageEndÔÇÖ ./cryptlib/simple.h:88: warning: unused parameter ÔÇśblockingÔÇÖ ./cryptlib/simple.h: In instantiation of ÔÇśsize_t CryptoPP::InputRejecting<T>::ChannelPut2(const std::string&, const byte*, size_t, int, bool) [with T = CryptoPP::BufferedTransformation] ÔÇÖ: ./cryptlib/simple.h:93: warning: unused parameter ÔÇśchannelÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśbeginÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇślengthÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśmessageEndÔÇÖ ./cryptlib/simple.h:93: warning: unused parameter ÔÇśblockingÔÇÖ 3. 1>------ Rebuild All started: Project: cryptlib, Configuration: Release Win32 ------ 1>Deleting intermediate files and output files for project 'cryptlib', configuration 'Release|Win32'. 1>Compiling with Intel(R) C++ 11.0.061 [IA-32]... (Intel C++ Environment) 1>pch.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (145): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InvalidArgument::~InvalidArgument" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidArgument : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (152): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InvalidDataFormat::~InvalidDataFormat" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidDataFormat : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (159): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InvalidCiphertext::~InvalidCiphertext" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidCiphertext : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (166): warning #811: exception specification for implicitly declared virtual function "CryptoPP::NotImplemented::~NotImplemented" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL NotImplemented : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (173): warning #811: exception specification for implicitly declared virtual function "CryptoPP::CannotFlush::~CannotFlush" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL CannotFlush : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (231): warning #811: exception specification for implicitly declared virtual function "CryptoPP::NameValuePairs::ValueTypeMismatch::~ValueTypeMismatch" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL ValueTypeMismatch : public InvalidArgument 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (642): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AuthenticatedSymmetricCipher::BadState::~BadState" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class BadState : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (834): warning #811: exception specification for implicitly declared virtual function "CryptoPP::BufferedTransformation::BlockingInputOnly::~BlockingInputOnly" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct BlockingInputOnly : public NotImplemented 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (981): warning #811: exception specification for implicitly declared virtual function "CryptoPP::BufferedTransformation::NoChannelSupport::~NoChannelSupport" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct NoChannelSupport : public NotImplemented 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (983): warning #811: exception specification for implicitly declared virtual function "CryptoPP::BufferedTransformation::InvalidChannelName::~InvalidChannelName" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InvalidChannelName : public InvalidArgument 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (1052): warning #811: exception specification for implicitly declared virtual function "CryptoPP::CryptoMaterial::InvalidMaterial::~InvalidMaterial" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidMaterial : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (1241): warning #811: exception specification for implicitly declared virtual function "CryptoPP::PK_Encryptor::InvalidPlaintextLength::~InvalidPlaintextLength" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidPlaintextLength : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (1302): warning #811: exception specification for implicitly declared virtual function "CryptoPP::PK_SignatureScheme::InvalidKeyLength::~InvalidKeyLength" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidKeyLength : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (1309): warning #811: exception specification for implicitly declared virtual function "CryptoPP::PK_SignatureScheme::KeyTooShort::~KeyTooShort" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL KeyTooShort : public InvalidKeyLength 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\cryptlib.h (1639): warning #811: exception specification for implicitly declared virtual function "CryptoPP::BERDecodeErr::~BERDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL BERDecodeErr : public InvalidArgument 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InvalidKeyLength::~InvalidKeyLength" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidKeyLength : public InvalidArgument 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InvalidRounds::~InvalidRounds" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL InvalidRounds : public InvalidArgument 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>Compiling with Intel(R) C++ 11.0.061 [IA-32]... (Intel C++ Environment) 1>algebra.cpp 1>.\integer.h(32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::DivideByZero::~DivideByZero" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DivideByZero : public Exception 1> ^ 1> 1>.\integer.h(39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::RandomNumberNotFound::~RandomNumberNotFound" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class RandomNumberNotFound : public Exception 1> ^ 1> 1>.\integer.h(163): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::OpenPGPDecodeErr::~OpenPGPDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class OpenPGPDecodeErr : public Exception 1> ^ 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>adler32.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>rdtables.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>crc.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>hmac.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>blowfish.cpp 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>zinflate.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HuffmanDecoder::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception {public: Err(const std::string &what) : Exception(INVALID_DATA_FORMAT, "HuffmanDecoder: " + what) {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (88): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (94): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::UnexpectedEndErr::~UnexpectedEndErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class UnexpectedEndErr : public Err {public: UnexpectedEndErr() : Err(INVALID_DATA_FORMAT, "Inflator: unexpected end of compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (95): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::BadBlockErr::~BadBlockErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class BadBlockErr : public Err {public: BadBlockErr() : Err (INVALID_DATA_FORMAT, "Inflator: error in compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1>ected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>filters.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\mqueue.h (69): warning #811: exception specification for implicitly declared virtual function "CryptoPP::EqualityComparisonFilter::MismatchDetected::~MismatchDetected" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1>~Exception" 1> struct MismatchDetected : public Exception {MismatchDetected() : Exception(DATA_INTEGRITY_CHECK_FAILED, "Equal 1>filters.cpp(301): warning #186: pointless comparison of unsigned integer with zero 1> if (m_firstSize < 0 || m_blockSize < 1 || m_lastSize < 0) 1> ^ 1> 1>filters.cpp(301): warning #186: pointless comparison of unsigned integer with zero 1> if (m_firstSize < 0 || m_blockSize < 1 || m_lastSize < 0) 1> ^ 1> 1>filters.cpp(310): warning #186: pointless comparison of unsigned integer with zero 1> if (m_firstSize < 0 || m_blockSize < 1 || m_lastSize < 0) 1> ^ 1> 1>filters.cpp(310): warning #186: pointless comparison of unsigned integer with zero 1> if (m_firstSize < 0 || m_blockSize < 1 || m_lastSize < 0) 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>des.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1>\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h(251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1>c Exception 1>\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h(251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>.\asn.h(51): warning #811: exception specification for implicitly declared virtual function "CryptoPP::UnknownOID::~UnknownOID" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL UnknownOID : public BERDecodeErr 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>rijndael.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>osrng.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\osrng.h (17): warning #811: exception specification for implicitly declared virtual function "CryptoPP::OS_RNG_Err::~OS_RNG_Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL OS_RNG_Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned long]" at line 35 of "osrng.cpp" 1> 1>trdlocal.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::OS_Error::~OS_Error" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>simple.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>pubkey.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::DivideByZero::~DivideByZero" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DivideByZero : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::RandomNumberNotFound::~RandomNumberNotFound" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class RandomNumberNotFound : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (163): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::OpenPGPDecodeErr::~OpenPGPDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class OpenPGPDecodeErr : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\pubkey.h (513): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DL_BadElement::~DL_BadElement" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DL_BadElement : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>dessp.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>gzip.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HuffmanDecoder::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception {public: Err(const std::string &what) : Exception(INVALID_DATA_FORMAT, "HuffmanDecoder: " + what) {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (88): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (94): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::UnexpectedEndErr::~UnexpectedEndErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class UnexpectedEndErr : public Err {public: UnexpectedEndErr() : Err(INVALID_DATA_FORMAT, "Inflator: unexpected end of compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (95): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::BadBlockErr::~BadBlockErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class BadBlockErr : public Err {public: BadBlockErr() : Err (INVALID_DATA_FORMAT, "Inflator: error in compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\gzip.h (36): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Gunzip::HeaderErr::~HeaderErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HeaderErr : public Err {public: HeaderErr() : Err (INVALID_DATA_FORMAT, "Gunzip: header decoding error") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\gzip.h (37): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Gunzip::TailErr::~TailErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class TailErr : public Err {public: TailErr() : Err (INVALID_DATA_FORMAT, "Gunzip: tail too short") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\gzip.h (38): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Gunzip::CrcErr::~CrcErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CrcErr : public Err {public: CrcErr() : Err (DATA_INTEGRITY_CHECK_FAILED, "Gunzip: CRC check error") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\gzip.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Gunzip::LengthErr::~LengthErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class LengthErr : public Err {public: LengthErr() : Err (DATA_INTEGRITY_CHECK_FAILED, "Gunzip: length check error") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>bfinit.cpp 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>queue.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>sha.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>default.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\default.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DefaultDecryptor::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\default.h (45): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DefaultDecryptor::KeyBadErr::~KeyBadErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class KeyBadErr : public Err {public: KeyBadErr() : Err ("DefaultDecryptor: cannot decrypt message with this passphrase") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\default.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DefaultDecryptorWithMAC::MACBadErr::~MACBadErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class MACBadErr : public DefaultDecryptor::Err {public: MACBadErr () : DefaultDecryptor::Err("DefaultDecryptorWithMAC: MAC check failed") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\seckey.h (100): warning #186: pointless comparison of unsigned integer with zero 1> if (n < (size_t)MIN_KEYLENGTH) 1> ^ 1> detected during instantiation of "size_t={unsigned int} __cdecl CryptoPP::VariableKeyLength<D, N, M, Q, IV_REQ, IV_L>::StaticGetValidKeyLength(size_t={unsigned int}) [with D=16U, N=0U, M=2147483647U, Q=1U, IV_REQ=4U, IV_L=0U]" at line 197 of "default.cpp" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1>tected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>randpool.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1> ^ 1> 1>c:\temp\no 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>modes.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>hrtimer.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned long]" at line 66 of "hrtimer.cpp" 1> 1>esign.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::DivideByZero::~DivideByZero" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DivideByZero : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::RandomNumberNotFound::~RandomNumberNotFound" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class RandomNumberNotFound : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (163): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::OpenPGPDecodeErr::~OpenPGPDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class OpenPGPDecodeErr : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\pubkey.h (513): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DL_BadElement::~DL_BadElement" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DL_BadElement : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\asn.h(51): warning #811: exception specification for implicitly declared virtual function "CryptoPP::UnknownOID::~UnknownOID" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL UnknownOID : public BERDecodeErr 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (198): warning #327: NULL reference is not allowed 1> R value = Hack_DefaultValueFromConstReferenceType (reinterpret_cast<R>(*(int *)NULL)); 1> ^ 1> detected during instantiation of "CryptoPP::AssignFromHelperClass<T, BASE> &CryptoPP::AssignFromHelperClass<T, BASE>::operator()(const char *, void (T::*)(R)) [with T=CryptoPP::ESIGNFunction, BASE=CryptoPP::ESIGNFunction, R=const CryptoPP::Integer &]" at line 68 of "esign.cpp" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (198): warning #327: NULL reference is not allowed 1> R value = Hack_DefaultValueFromConstReferenceType (reinterpret_cast<R>(*(int *)NULL)); 1> ^ 1> detected during instantiation of "CryptoPP::AssignFromHelperClass<T, BASE> &CryptoPP::AssignFromHelperClass<T, BASE>::operator()(const char *, void (T::*)(R)) [with T=CryptoPP::InvertibleESIGNFunction, BASE=CryptoPP::ESIGNFunction, R=const CryptoPP::Integer &]" at line 205 of "esign.cpp" 1> 1>nbtheory.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::DivideByZero::~DivideByZero" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DivideByZero : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::RandomNumberNotFound::~RandomNumberNotFound" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class RandomNumberNotFound : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (163): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::OpenPGPDecodeErr::~OpenPGPDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class OpenPGPDecodeErr : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>nbtheory.cpp(650): warning #161: unrecognized #pragma 1> #pragma omp parallel 1> ^ 1> 1>nbtheory.cpp(651): warning #161: unrecognized #pragma 1> #pragma omp sections 1> ^ 1> 1>nbtheory.cpp(653): warning #161: unrecognized #pragma 1> #pragma omp section 1> ^ 1> 1>nbtheory.cpp(655): warning #161: unrecognized #pragma 1> #pragma omp section 1> ^ 1> 1>nbtheory.cpp(1002): warning #161: unrecognized #pragma 1> #pragma omp parallel 1> ^ 1> 1>nbtheory.cpp(1003): warning #161: unrecognized #pragma 1> #pragma omp sections 1> ^ 1> 1>nbtheory.cpp(1005): warning #161: unrecognized #pragma 1> #pragma omp section 1> ^ 1> 1>nbtheory.cpp(1010): warning #161: unrecognized #pragma 1> #pragma omp section 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>mqueue.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\mqueue.h (69): warning #811: exception specification for implicitly declared virtual function "CryptoPP::EqualityComparisonFilter::MismatchDetected::~MismatchDetected" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct MismatchDetected : public Exception {MismatchDetected() : Exception(DATA_INTEGRITY_CHECK_FAILED, "EqualityComparisonFilter: did not receive the same data on two channels") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1>tected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>algparam.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1> ^ 1> 1>c:\temp\no detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>zlib.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HuffmanDecoder::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception {public: Err(const std::string &what) : Exception(INVALID_DATA_FORMAT, "HuffmanDecoder: " + what) {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (88): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (94): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::UnexpectedEndErr::~UnexpectedEndErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class UnexpectedEndErr : public Err {public: UnexpectedEndErr() : Err(INVALID_DATA_FORMAT, "Inflator: unexpected end of compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zinflate.h (95): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Inflator::BadBlockErr::~BadBlockErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class BadBlockErr : public Err {public: BadBlockErr() : Err (INVALID_DATA_FORMAT, "Inflator: error in compressed block") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zlib.h (34): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ZlibDecompressor::HeaderErr::~HeaderErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HeaderErr : public Err {public: HeaderErr() : Err (INVALID_DATA_FORMAT, "ZlibDecompressor: header decoding error") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zlib.h (35): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ZlibDecompressor::Adler32Err::~Adler32Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Adler32Err : public Err {public: Adler32Err() : Err (DATA_INTEGRITY_CHECK_FAILED, "ZlibDecompressor: ADLER32 check error") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zlib.h (36): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ZlibDecompressor::UnsupportedAlgorithm::~UnsupportedAlgorithm" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class UnsupportedAlgorithm : public Err {public: UnsupportedAlgorithm() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: unsupported algorithm") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\zlib.h (37): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ZlibDecompressor::UnsupportedPresetDictionary::~UnsupportedPresetDictionary" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class UnsupportedPresetDictionary : public Err {public: UnsupportedPresetDictionary() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: unsupported preset dictionary") {}}; 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>misc.cpp 1>nsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t={unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>misc.cpp 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>cpu.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>iterhash.cpp 1>Warning #673: the initial sequence of preprocessing directives is not compatible with those of precompiled header file "Win32\cryptlib \Release\cryptlib.pchi" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>integer.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (32): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::DivideByZero::~DivideByZero" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DivideByZero : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (39): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::RandomNumberNotFound::~RandomNumberNotFound" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class RandomNumberNotFound : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\integer.h (163): warning #811: exception specification for implicitly declared virtual function "CryptoPP::Integer::OpenPGPDecodeErr::~OpenPGPDecodeErr" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class OpenPGPDecodeErr : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\asn.h(51): warning #811: exception specification for implicitly declared virtual function "CryptoPP::UnknownOID::~UnknownOID" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL UnknownOID : public BERDecodeErr 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\pubkey.h (513): warning #811: exception specification for implicitly declared virtual function "CryptoPP::DL_BadElement::~DL_BadElement" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class DL_BadElement : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>cryptlib.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (311): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashVerificationFilter::HashVerificationFailed::~HashVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class HashVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::OS_Error::~OS_Error" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\iterhash.h (12): warning #811: exception specification for implicitly declared virtual function "CryptoPP::HashInputTooLong::~HashInputTooLong" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL HashInputTooLong : public InvalidDataFormat 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\osrng.h (17): warning #811: exception specification for implicitly declared virtual function "CryptoPP::OS_RNG_Err::~OS_RNG_Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL OS_RNG_Err : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned __int64]" at line 200 of "cryptlib.cpp" 1> 1>zdeflate.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\algparam.h (251): warning #811: exception specification for implicitly declared virtual function "CryptoPP::AlgorithmParametersBase::ParameterNotUsed::~ParameterNotUsed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class ParameterNotUsed : public Exception 1> ^ 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\filters.h (408): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SignatureVerificationFilter::SignatureVerificationFailed::~SignatureVerificationFailed" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class SignatureVerificationFailed : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::Filter]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::Filter]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::Filter]" 1> 1>strciphr.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>fips140.cpp 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\fips140.h (14): warning #811: exception specification for implicitly declared virtual function "CryptoPP::SelfTestFailure::~SelfTestFailure" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class CRYPTOPP_DLL SelfTestFailure : public Exception 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\trdlocal.h (24): warning #811: exception specification for implicitly declared virtual function "CryptoPP::ThreadLocalStorage::Err::~Err" is incompatible with that of overridden function "CryptoPP::OS_Error::~OS_Error" 1> class Err : public OS_Error 1> ^ 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\misc.h (385): warning #186: pointless comparison of unsigned integer with zero 1> if (a < 0) 1> ^ 1> detected during instantiation of "std::string CryptoPP::IntToString(T, unsigned int) [with T=unsigned int]" at line 35 of "c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib \simple.h" 1> 1>c:\temp\notecase_pro-2.8.7\plugins\NotekeeperLib\cryptlib\simple.h (84): warning #811: exception specification for implicitly declared virtual function "CryptoPP::InputRejecting<T>::InputRejected::~InputRejected [with T=CryptoPP::BufferedTransformation]" is incompatible with that of overridden function "CryptoPP::Exception::~Exception" 1> struct InputRejected : public NotImplemented 1> ^ 1> detected during: 1> instantiation of class "CryptoPP::InputRejecting<T>::InputRejected [with T=CryptoPP::BufferedTransformation]" at line 89 1> instantiation of "size_t={unsigned int} CryptoPP::InputRejecting<T>::Put2(const byte={unsigned char} *, size_t= {unsigned int}, int, bool) [with T=CryptoPP::BufferedTransformation]" 1> 1>Creating library... (Intel C++ Environment) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to cryptopp-users-unsubscribe@.... More information about Crypto++ and this group is available at http://www.cryptopp.com. -~----------~----~----~----~------~----~------~--~--- |
| Free embeddable forum powered by Nabble | Forum Help |