Cleared C4589 under VS2015 (Issue 214)
parent
6853716147
commit
be80fcdbba
11
wait.h
11
wait.h
|
|
@ -32,6 +32,13 @@
|
||||||
# endif
|
# endif
|
||||||
#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)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
class Tracer
|
class Tracer
|
||||||
|
|
@ -223,6 +230,10 @@ private:
|
||||||
|
|
||||||
NAMESPACE_END
|
NAMESPACE_END
|
||||||
|
|
||||||
|
#if CRYPTOPP_MSC_VERSION == 1900
|
||||||
|
# pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue