Cleared C4589 under VS2015 (Issue 214)

pull/211/merge
Jeffrey Walton 2016-07-04 09:24:39 -04:00
parent 6853716147
commit be80fcdbba
1 changed files with 11 additions and 0 deletions

11
wait.h
View File

@ -32,6 +32,13 @@
# endif
#endif
// http://connect.microsoft.com/VisualStudio/feedback/details/1581706
// and http://github.com/weidai11/cryptopp/issues/214
#if CRYPTOPP_MSC_VERSION == 1900
# pragma warning(push)
# pragma warning(disable: 4589)
#endif
NAMESPACE_BEGIN(CryptoPP)
class Tracer
@ -223,6 +230,10 @@ private:
NAMESPACE_END
#if CRYPTOPP_MSC_VERSION == 1900
# pragma warning(pop)
#endif
#endif
#endif